20 lines
305 B
Go
20 lines
305 B
Go
package configuration
|
|
|
|
// Config holds all the configuration of the application
|
|
type Config struct {
|
|
Mock bool
|
|
|
|
Port int
|
|
|
|
LogLevel string
|
|
LogFormat string
|
|
|
|
PostgresDBName string
|
|
PostgresDBSchema string
|
|
PostgresHost string
|
|
PostgresUser string
|
|
PostgresPwd string
|
|
|
|
Version string
|
|
}
|