diff --git a/internal/auth/routes.go b/internal/auth/routes.go new file mode 100644 index 0000000..510601a --- /dev/null +++ b/internal/auth/routes.go @@ -0,0 +1,21 @@ +package auth + +import ( + "gitea.local/admin/hspguard/internal/repository" + "github.com/go-chi/chi/v5" +) + +type AuthHandler struct { + repo *repository.Queries +} + +func NewAuthHandler(repo *repository.Queries) *AuthHandler { + return &AuthHandler{ + repo: repo, + } +} + +func (h *AuthHandler) RegisterRoutes(router chi.Router, api chi.Router) { + +} +