gopay/internal/config/config.go

22 lines
364 B
Go
Raw Normal View History

2024-06-02 11:57:14 +00:00
package config
// Configuration
type Config struct {
Database *Database
Log *Log
}
// Database configuration
type Database struct {
Backend string `toml:"backend"`
URL string `toml:"url"`
SSL bool `toml:"ssl"`
Max int `toml:"max"`
Idle int `toml:"idle"`
}
// Log configuration
type Log struct {
Level string `toml:"level"`
}