mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-04-29 00:59:40 +07:00
12 lines
168 B
Go
12 lines
168 B
Go
package teams
|
|
|
|
type CreateTeamSchema struct {
|
|
Name string `json:"name"`
|
|
Icon string `json:"icon"`
|
|
}
|
|
|
|
type GetOptions struct {
|
|
ID string
|
|
WithMembers bool
|
|
}
|