gopay/internal/config/config.go

30 lines
549 B
Go
Raw Normal View History

2024-06-02 11:57:14 +00:00
package config
// Configuration
type Config struct {
2024-06-02 13:07:09 +00:00
Server *Server
2024-06-02 11:57:14 +00:00
Database *Database
Log *Log
}
2024-06-02 13:07:09 +00:00
// Server configuration
type Server struct {
Address string `toml:"address"`
ReadTimeout int `toml:"read_timeout"`
WriteTimeout int `toml:"write_timeout"`
}
2024-06-02 11:57:14 +00:00
// Database configuration
type Database struct {
2024-06-02 11:58:48 +00:00
Driver string `toml:"driver"`
URL string `toml:"url"`
SSL bool `toml:"ssl"`
Max int `toml:"max"`
Idle int `toml:"idle"`
2024-06-02 11:57:14 +00:00
}
// Log configuration
type Log struct {
Level string `toml:"level"`
}