diff options
Diffstat (limited to 'config.go')
-rw-r--r-- | config.go | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -12,7 +12,6 @@ import ( type RuntimeConfig struct { Path string Http HttpConfig `json:"http"` - Database DatabaseConfig `json:"database"` } type HttpConfig struct { @@ -22,13 +21,6 @@ type HttpConfig struct { Templates string `json:"templates"` } -type DatabaseConfig struct { - Socket string `json:"socket"` - User string `json:"user"` - Database string `json:"database"` - Migrations string `json:"migrations"` -} - func GetRuntimeConfig() RuntimeConfig { config := RuntimeConfig{} |