Documentation ¶
Index ¶
Constants ¶
View Source
const ( DebugMode = RunMode("debug") ReleaseMode = RunMode("release") )
Variables ¶
View Source
var (
HashSalt string
)
Functions ¶
This section is empty.
Types ¶
type AppConfig ¶
type AppConfig struct { ServerHost string `json:"server_host"` ServerPort int `json:"server_port"` AutoMigrate bool `json:"auto_migrate"` PgUser string `json:"pg_user"` PgPass string `json:"pg_pass"` PgHost string `json:"pg_host"` PgName string `json:"pg_name"` PgPort string `json:"pg_port"` PgDebug bool `json:"pg_debug"` PgLogger bool `json:"pg_logger"` PgMaxIdleConns int `json:"pg_max_idle_conns"` PgMaxOpenConns int `json:"pg_max_open_conns"` PgConnMaxLifeTime int `json:"pg_conn_max_life_time"` HashSalt string `json:"hash_salt"` MetricPort int `json:"metric_port"` Mode RunMode `json:"mode"` }
func ReadConfig ¶
Click to show internal directories.
Click to hide internal directories.