Fixes in packages namespaces

This commit is contained in:
PB
2025-10-20 16:25:55 +02:00
parent 54ff2581ed
commit 72d5f93a30
8 changed files with 25 additions and 7 deletions

18
identity/entity/user.go Normal file
View File

@@ -0,0 +1,18 @@
package identity
import "time"
type User struct {
ID int `json:"id"`
Username string `json:"username"`
Password string `json:"password"`
CreateDate time.Time `json:"create_date"`
ModifyDate time.Time `json:"modify_date"` // FIXME: zero-value issue
}
var TestUser = &User{
ID: 1,
Username: "test",
Password: "test",
CreateDate: time.Now(),
}