chore: more work on the app

This commit is contained in:
2024-02-24 15:28:23 +00:00
parent 32771c7422
commit ce866725ff
10 changed files with 544 additions and 38 deletions

View File

@@ -5,6 +5,13 @@ import (
"errors"
)
type UserType int
const (
User_Normal UserType = iota + 1
User_Admin
)
type User struct {
Id string
Username string