Files
mam-contract/configuration/config.go
Jeffrey Duroyon 33db360b03 init
2023-10-18 19:52:34 +02:00

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
}