mirror of
https://github.com/gravitl/netmaker.git
synced 2025-02-25 16:44:01 +08:00
12 lines
240 B
Go
12 lines
240 B
Go
package models
|
|
|
|
type AccessToken struct {
|
|
APIConnString string `json:"apiconnstring"`
|
|
ClientConfig
|
|
}
|
|
|
|
type ClientConfig struct {
|
|
Network string `json:"network"`
|
|
Key string `json:"key"`
|
|
LocalRange string `json:"localrange"`
|
|
}
|