commons-go/probe/config/central.go
crusader e45555a9b6 ing
2018-04-12 18:54:44 +09:00

14 lines
388 B
Go

package config
import (
csswc "git.loafle.net/commons/server-go/socket/web/client"
"git.loafle.net/overflow/commons-go/core/config"
)
type Central struct {
Host string `required:"true" json:"host"`
Port int `required:"true" json:"port"`
Connector *csswc.Connectors `required:"true" json:"connector"`
Proxy *config.Proxy `json:"proxy"`
}