view config/config.go @ 222:cfde876fbaf9

Try to DROP ROLEs before creating them and keep test results
author Tom Gottfried <tom@intevation.de>
date Wed, 25 Jul 2018 11:59:10 +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
}