summary refs log tree commit diff stats
path: root/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'types.go')
-rw-r--r--types.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/types.go b/types.go
new file mode 100644
index 0000000..a8f027a
--- /dev/null
+++ b/types.go
@@ -0,0 +1,17 @@
+package main
+
+import "regexp"
+
+type configuration struct {
+	port         string
+	validPath    *regexp.Regexp
+	quietLogging bool
+	fileLogging  bool
+	logFile      string
+}
+
+var confObj = &configuration{}
+
+func initConfig() {
+	confObj.validPath = regexp.MustCompile("^/(api)/(plain)/(tweets|users|tags|mentions)")
+}