13 lines
511 B
Go
13 lines
511 B
Go
|
package settings
|
||
|
|
||
|
type Node struct {
|
||
|
Name string `json:"name" binding:"omitempty,safety_text"`
|
||
|
Secret string `json:"secret" protected:"true"`
|
||
|
SkipInstallation bool `json:"skip_installation" protected:"true"`
|
||
|
Demo bool `json:"demo" protected:"true"`
|
||
|
ICPNumber string `json:"icp_number" binding:"omitempty,safety_text"`
|
||
|
PublicSecurityNumber string `json:"public_security_number" binding:"omitempty,safety_text"`
|
||
|
}
|
||
|
|
||
|
var NodeSettings = &Node{}
|