package domain import ( "github.com/golang-jwt/jwt/v5" domainAuth "github.com/haydenhargreaves/Potion/internal/domain/auth" domainUser "github.com/haydenhargreaves/Potion/internal/domain/user" ) type InjectedDependencies struct { UserService domainUser.UserService AuthService domainAuth.AuthService } type JwtClaims struct { UserId int `json:"id"` Email string `json:"email"` jwt.RegisteredClaims }