mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-10 17:48:25 +08:00
13 lines
285 B
Go
13 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"`
|
|
}
|