package
Version:
v0.0.0-...-d48638b
Opens a new window with list of versions in this module.
Published: Aug 26, 2022
License: MIT
Opens a new window with license information.
Imports: 2
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type App struct {
Name string `env-required:"true" yaml:"name" env:"APP_NAME"`
Version string `env-required:"true" yaml:"version" env:"APP_VERSION"`
}
type Config struct {
App `yaml:"app"`
Log `yaml:"logger"`
PG `yaml:"postgres"`
}
type Log struct {
Level string `env-required:"true" yaml:"log_level" env:"LOG_LEVEL"`
}
type PG struct {
PoolMax int `env-required:"true" yaml:"pool_max" env:"PG_POOL_MAX"`
URL string `env-required:"true" env:"PG_URL"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.