14 lines
326 B
Go
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"`
|
|
}
|