mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 02:15:48 +02:00
9 lines
132 B
Go
9 lines
132 B
Go
package settings
|
|
|
|
type Cluster struct {
|
|
Node []string `ini:",,allowshadow"`
|
|
}
|
|
|
|
var ClusterSettings = Cluster{
|
|
Node: []string{},
|
|
}
|