mirror of
https://github.com/PretendoNetwork/friends.git
synced 2026-03-21 18:04:11 -05:00
20 lines
584 B
Go
20 lines
584 B
Go
package globals
|
|
|
|
type config struct {
|
|
PostgresURI string
|
|
PostgresMaxConnections int64
|
|
AESKey string
|
|
GRPCAPIKey string `envconf:"optional"`
|
|
GRPCServerPort uint16
|
|
AuthenticationServerPort uint16
|
|
SecureServerHost string
|
|
SecureServerPort uint16
|
|
AccountGRPCHost string
|
|
AccountGRPCPort uint16
|
|
AccountGRPCAPIKey string `envconf:"optional"`
|
|
HealthCheckPort uint16 `envconf:"optional"`
|
|
EnableBella bool `envconf:"optional"`
|
|
}
|
|
|
|
var Config *config = &config{}
|