about summary refs log tree commit diff
path: root/src/main.go
diff options
context:
space:
mode:
authorhanemile <hanemile@protonmail.com>2019-01-28 23:42:43 +0100
committerhanemile <hanemile@protonmail.com>2019-01-28 23:42:43 +0100
commitb8bc6b63c4b359af24dcfca71a160c279bba82d0 (patch)
tree744d980e5d338b175b74186f8fd75be184aa31ba /src/main.go
parent509d56e59b32c2d097b5dc6538a139c1da28ba90 (diff)
Added missing files
Diffstat (limited to 'src/main.go')
-rw-r--r--src/main.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main.go b/src/main.go
new file mode 100644
index 0000000..0808608
--- /dev/null
+++ b/src/main.go
@@ -0,0 +1,7 @@
+package main
+
+import "net/http"
+
+func main() {
+	panic(http.ListenAndServe(":80", http.FileServer(http.Dir("./"))))
+}