forked from TrueCloudLab/lego
6004e599ed
* feat: add dep configuration files. * chore: add vendor folder. * refactor: update Dockerfile. * review: remove git from Dockerfile. * review: remove RUN apk. * review: dep status. * feat: added .dockerignore
8 lines
225 B
Go
8 lines
225 B
Go
package account
|
|
|
|
// Team wraps an NS1 /accounts/teams resource
|
|
type Team struct {
|
|
ID string `json:"id,omitempty"`
|
|
Name string `json:"name"`
|
|
Permissions PermissionsMap `json:"permissions"`
|
|
}
|