fix more stuff

This commit is contained in:
2026-08-24 22:51:07 +02:00
parent 456962fe18
commit 581f5444fb
10 changed files with 226 additions and 206 deletions
+7 -3
View File
@@ -3,9 +3,13 @@ package auth
import "github.com/google/uuid"
type User struct {
ID uuid.UUID `json:"id"`
Email string `json:"email"`
Name string `json:"name"`
ID uuid.UUID `json:"id"`
Email string `json:"email"`
Name string `json:"name"`
StudioName string `json:"studioName"`
Tagline string `json:"tagline"`
WebsiteURL string `json:"websiteUrl"`
InstagramURL string `json:"instagramUrl"`
}
type storedUser struct {