mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-12-10 00:00:26 +08:00
14 lines
264 B
Go
14 lines
264 B
Go
package nodes
|
|
|
|
import "encoding/json"
|
|
|
|
type ServerConfig struct {
|
|
Id string `json:"id" yaml:"id"`
|
|
IsOn bool `json:"isOn" yaml:"isOn"`
|
|
Name string `json:"name" yaml:"name"`
|
|
}
|
|
|
|
func (this *ServerConfig) AsJSON() ([]byte, error) {
|
|
return json.Marshal(this)
|
|
}
|