mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-10 18:05:48 +02:00
12 lines
511 B
Go
12 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{}
|