summary refs log tree commit diff stats
path: root/types.go
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2019-05-11 04:07:48 -0400
committerBen Morrison <ben@gbmor.dev>2019-05-11 04:07:48 -0400
commitd62c82f30506baa430fb7e3e117f007cfa66ac13 (patch)
treee48dfe43455c97acdfbe722d5c16c76be1b24164 /types.go
parentd3d9df2268345cb3bdcdcfa5712dfde0fdf7dbca (diff)
downloadgetwtxt-d62c82f30506baa430fb7e3e117f007cfa66ac13.tar.gz
commenting early
Diffstat (limited to 'types.go')
-rw-r--r--types.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/types.go b/types.go
index 15f39d1..6b33e5b 100644
--- a/types.go
+++ b/types.go
@@ -1,8 +1,10 @@
 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
@@ -10,4 +12,5 @@ type configuration struct {
 	logFile      string
 }
 
+// config object
 var confObj = &configuration{}