diff --git a/auth.go b/auth.go index 080c375..58eef13 100644 --- a/auth.go +++ b/auth.go @@ -1,11 +1,14 @@ package modweb -import "github.com/gofiber/fiber/v2/middleware/session" +import ( + "github.com/gofiber/fiber/v2/middleware/session" + "html/template" +) type AuthHandler interface { Module - LoginURL() string - RegisterURL() string + LoginURL() template.URL + RegisterURL() template.URL } type User struct {