mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-05-15 08:59:37 +07:00
12 lines
205 B
Go
12 lines
205 B
Go
package members
|
|
|
|
type InviteSchema struct {
|
|
Username string `json:"username"`
|
|
Role string `json:"role"`
|
|
}
|
|
|
|
type PutRoleSchema struct {
|
|
UserID string `json:"username"`
|
|
Role string `json:"role"`
|
|
}
|