init repo

This commit is contained in:
VaalaCat
2024-08-28 00:02:28 +08:00
committed by vaalacat
commit 13148b95e3
97 changed files with 10214 additions and 0 deletions

17
defs/entity.go Normal file
View File

@@ -0,0 +1,17 @@
package defs
type User struct {
UserID string `json:"user_id"`
Name string `json:"name"`
Username string `json:"username"`
Email string `json:"email"`
IsPrivateEmail bool `json:"is_private_email"`
EmailVerified bool `json:"email_verified"`
// Tenants []Tenant
}
// type Tenant struct {
// ID string `json:"id"`
// Name string `json:"name"`
// Description string `json:"description"`
// }