summary refs log tree commit diff stats
path: root/main.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 /main.go
parent1f023dcf4595eceee04ce3862dd2be19a496c6db (diff)
downloadgetwtxt-893123ce21c5bf74880fd0ff79d587cbcc1789cf.tar.gz
building the skeleton
Diffstat (limited to 'main.go')
-rw-r--r--main.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..7477055
--- /dev/null
+++ b/main.go
@@ -0,0 +1,14 @@
+package main
+
+import (
+	"log"
+	"net/http"
+)
+
+func main() {
+	log.Printf("getwtxt v0.1\n")
+
+	http.HandleFunc("/api", apiHandler)
+
+	log.Fatalln(http.ListenAndServe(":666", nil))
+}