netmaker/models/accessToken.go
2023-01-20 05:42:05 -05:00

14 lines
285 B
Go

package models
// AccessToken - token used to access netmaker
type AccessToken struct {
APIConnString string `json:"apiconnstring"`
ClientConfig
}
// ClientConfig - the config of the client
type ClientConfig struct {
Network string `json:"network"`
Key string `json:"key"`
}