package
Version:
v0.0.0-...-21c1986
Opens a new window with list of versions in this module.
Published: Dec 16, 2023
License: MIT
Opens a new window with license information.
Imports: 4
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"`
HTTP `yaml:"http"`
SQL `yaml:"sql"`
}
type HTTP struct {
Port string `env-required:"true" yaml:"port" env:"HTTP_PORT"`
}
type SQL struct {
Timeout string `env-required:"true" yaml:"timeout" env:"SQL_TIMEOUT"`
URL string `env:"SQL_URL"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.