overflow_server_app/config/config.go
crusader 1639b86706 ing
2017-11-23 17:06:44 +09:00

14 lines
326 B
Go

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"`
}