This commit is contained in:
Jeffrey Duroyon
2019-04-04 14:29:48 +02:00
committed by Jeffrey Duroyon
parent 0df6d64c35
commit 33db360b03
38 changed files with 1476 additions and 1 deletions

19
configuration/config.go Normal file
View File

@@ -0,0 +1,19 @@
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
}