package middleware import ( "net/http" ) func (m *middleware) LoadSession(next http.Handler) http.Handler { return m.session.LoadAndSave(next) }