13 lines
342 B
Go
13 lines
342 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 {
|
|
Address string `required:"true" json:"address"`
|
|
Connector *csswc.Connectors `required:"true" json:"connector"`
|
|
Proxy *config.Proxy `json:"proxy,omitempty"`
|
|
}
|