summary refs log tree commit diff stats
path: root/types.go
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2019-05-10 02:17:32 -0400
committerBen Morrison <ben@gbmor.dev>2019-05-10 02:17:32 -0400
commit893123ce21c5bf74880fd0ff79d587cbcc1789cf (patch)
tree932bb18fa5db90730382c1de4a7c1f5119b0ff56 /types.go
parent1f023dcf4595eceee04ce3862dd2be19a496c6db (diff)
downloadgetwtxt-893123ce21c5bf74880fd0ff79d587cbcc1789cf.tar.gz
building the skeleton
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)")
+}