mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 12:50:05 +01:00
12 lines
179 B
Go
12 lines
179 B
Go
package orgs
|
|
|
|
type OrgInput struct {
|
|
Name string `json:"name"`
|
|
Slug string `json:"slug"`
|
|
}
|
|
|
|
type InviteInput struct {
|
|
Email string `json:"email"`
|
|
Role string `json:"role"`
|
|
}
|