summary refs log tree commit diff stats
path: root/types.go
blob: 15f39d1ab95f4f0eae509d980d274818744fd174 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package main

const txtutf8 = "text/plain; charset=utf8"
const htmlutf8 = "text/html; charset=utf8"

type configuration struct {
	port         string
	quietLogging bool
	fileLogging  bool
	logFile      string
}

var confObj = &configuration{}