Draft: feat login

This commit is contained in:
2025-09-05 03:59:25 +08:00
parent 6d7074198f
commit 0e3e1a5f23
38 changed files with 1546 additions and 90 deletions

4
models/room.go Normal file
View File

@@ -0,0 +1,4 @@
package models
type Room struct {
}

14
models/user.go Normal file
View File

@@ -0,0 +1,14 @@
package models
import "github.com/uptrace/bun"
type User struct {
bun.BaseModel `bun:"table:user" json:"-"`
Username string `bun:"username,pk"`
Password string `bun:"password"`
}
type UserStatus struct {
Username string `json:"username"`
}