view config/config.go @ 278:9c1dfadb53aa usermanagement

feat: usermanagement - route established and secured Added new route for prototypical implementation of usermanagement.
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 30 Jul 2018 16:02:19 +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
}