summary refs log tree commit diff stats
path: root/main.go
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2019-05-10 03:33:50 -0400
committerBen Morrison <ben@gbmor.dev>2019-05-10 03:33:50 -0400
commitae0eea0f0b2eaea22d9a87e4036ec8afa26642c3 (patch)
tree4921be9c7d3b954503486cbe1bec55d1cde3033a /main.go
parent4e6e53fb073b871d44e96ef22a95995957a07f82 (diff)
downloadgetwtxt-ae0eea0f0b2eaea22d9a87e4036ec8afa26642c3.tar.gz
change port for unprivileged binds
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 7477055..7d13c32 100644
--- a/main.go
+++ b/main.go
@@ -10,5 +10,5 @@ func main() {
 
 	http.HandleFunc("/api", apiHandler)
 
-	log.Fatalln(http.ListenAndServe(":666", nil))
+	log.Fatalln(http.ListenAndServe(":8080", nil))
 }