Add IAM scaffold modules

This commit is contained in:
2026-02-03 10:05:53 +08:00
parent bc69ad4e33
commit 66e438978e
21 changed files with 156 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package domain
type User struct {
ID int64
Name string
}
type Role struct {
ID int64
Name string
}