12345678910111213141516171819 |
- package models
- type AccessToken struct {
- ServerConfig
- ClientConfig
- }
- type ClientConfig struct {
- Network string `json:"network"`
- Key string `json:"key"`
- LocalRange string `json:"localrange"`
- }
- type ServerConfig struct {
- GRPCConnString string `json:"grpcconn"`
- GRPCSSL string `json:"grpcssl"`
- Server string `json:"server"`
- APIConnString string `json:"apiconnstring"`
- }
|