mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-04-29 00:59:40 +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"`
|
|
}
|