Added Role Entity

This commit is contained in:
2025-10-21 20:55:41 +02:00
parent 0ae9fd4c99
commit 4972989610

7
identity/entity/role.go Normal file
View File

@@ -0,0 +1,7 @@
package identity
type Role struct {
ID string `db:"id" json:"id"`
Roles []byte `db:"roles" json:"roles"`
URL string `db:"url" json:"url"`
}