overflow_gateway_websocket/config/server.go
2017-11-10 22:24:10 +09:00

13 lines
528 B
Go

package config
import "time"
type Server struct {
Name string `json:"name" yaml:"name" toml:"name"`
Network string `json:"network" yaml:"network" toml:"network"`
Addr string `json:"addr" yaml:"addr" toml:"addr"`
TLS bool `json:"tls" yaml:"tls" toml:"tls"`
Concurrency int `json:"concurrency" yaml:"concurrency" toml:"concurrency"`
MaxStopWaitTime time.Duration `json:"maxStopWaitTime" yaml:"maxStopWaitTime" toml:"maxStopWaitTime"`
}