package
Version:
v0.1.0
Opens a new window with list of versions in this module.
Published: Mar 8, 2026
License: Apache-2.0
Opens a new window with license information.
Imports: 9
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Config struct {
HTTP http `koanf:"http"`
Database Database `koanf:"database"`
Events Events `koanf:"events"`
Delivery Delivery `koanf:"delivery"`
}
type Database struct {
URL string `koanf:"url"`
ConnMaxIdleTime time.Duration `koanf:"conn_max_idle_time"`
ConnMaxLifetime time.Duration `koanf:"conn_max_lifetime"`
MaxOpenConns int `koanf:"max_open_conns"`
MaxIdleConns int `koanf:"max_idle_conns"`
}
type Delivery struct {
Timeout time.Duration `koanf:"timeout"`
UserAgent string `koanf:"user_agent"`
}
type Events struct {
Timeout time.Duration `koanf:"timeout"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.