mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 02:15:48 +02:00
15 lines
420 B
Go
15 lines
420 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"`
|
|
}
|
|
|
|
var NodeSettings = &Node{
|
|
Name: "",
|
|
Secret: "",
|
|
SkipInstallation: false,
|
|
Demo: false,
|
|
}
|