Compare commits

...

1 Commits

Author SHA1 Message Date
4972989610 Added Role Entity 2025-10-21 21:04:37 +02:00

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"`
}