重构认证授权逻辑,集中到 auth 包中

This commit is contained in:
2025-05-12 10:07:12 +08:00
parent cfdee98a1b
commit 2c37dcc2be
40 changed files with 905 additions and 455 deletions

View File

@@ -77,7 +77,7 @@ func Locals(c *fiber.Ctx, auth *Context) {
}
func authBearer(ctx context.Context, token string) (*Context, error) {
auth, err := find(ctx, token)
auth, err := FindSession(ctx, token)
if err != nil {
slog.Debug(err.Error())
return nil, err