overflow_server_app/config/config.go

14 lines
326 B
Go
Raw Normal View History

2017-11-23 08:06:44 +00:00
package config
import (
oosc "git.loafle.net/overflow/overflow_server_config"
)
var Config ServerAppConfig
type ServerAppConfig struct {
Server *oosc.Server `json:"server" yaml:"server" toml:"server"`
Auth *oosc.Auth `json:"auth" yaml:"auth" toml:"auth"`
GRPC *oosc.GRPC `json:"gRPC" yaml:"gRPC" toml:"gRPC"`
}