Files
2024-07-19 17:04:42 +02:00

20 lines
309 B
Go

package configuration
// Config holds all the configuration of the application.
type Config struct {
Mock bool
Port string
LogLevel string
LogFormat string
PostgresDBName string
PostgresDBSchema string
PostgresHost string
PostgresUser string
PostgresPwd string
Version string
}