10 lines
148 B
Go
10 lines
148 B
Go
|
package model
|
||
|
|
||
|
type ZeroTierUpData struct {
|
||
|
Config ZeroTierConfig `json:"config"`
|
||
|
}
|
||
|
|
||
|
type ZeroTierConfig struct {
|
||
|
Private bool `json:"private"`
|
||
|
}
|