fix auth stuff

This commit is contained in:
2025-12-18 14:06:07 -05:00
parent ec095a3955
commit 9278ddf029

View File

@@ -2,6 +2,7 @@ package auth0
import (
"context"
"encoding/gob"
"fmt"
"net/http"
"net/url"
@@ -11,6 +12,10 @@ import (
"git.citc.tech/go/web/auth/auth0/authenticator"
)
func init() {
gob.Register(SessionUser{})
}
type Logger interface {
Debug(msg string, args ...any)
Info(msg string, args ...any)