This commit is contained in:
2025-03-28 17:51:34 +08:00
parent da612380e0
commit 5c8802d2f0
68 changed files with 3422 additions and 630 deletions

View File

@@ -6,6 +6,6 @@ import (
"management/internal/pkg/session"
)
func LoadSession(next http.Handler) http.Handler {
func LoadSession(session session.ISession, next http.Handler) http.Handler {
return session.LoadAndSave(next)
}