view config/config.go @ 287:be6e60fca3dd

Separated the type definitions from the user controller code.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Tue, 31 Jul 2018 11:27:45 +0200
parents 696c19abe869
children 0777aa6de45b
line wrap: on
line source

package config

var Config Configuration

type Configuration struct {
	DBHost    string
	DBPort    uint
	DBName    string
	DBSSLMode string

	SessionStore string

	Web     string
	WebHost string
	WebPort uint
}