summary refs log blame commit diff stats
path: root/types.go
blob: 6b33e5b915d8961e4ddfc214d36055102d832555 (plain) (tree)
1
2
3
4
5
6
7
8
9

            
                      

                                          
 
                           

                           




                           
                
                              
package main

// content-type consts
const txtutf8 = "text/plain; charset=utf8"
const htmlutf8 = "text/html; charset=utf8"

// config object definition
type configuration struct {
	port         string
	quietLogging bool
	fileLogging  bool
	logFile      string
}

// config object
var confObj = &configuration{}