diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..85e7c1d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/.idea/ diff --git a/main.go b/main.go new file mode 100644 index 0000000..5275688 --- /dev/null +++ b/main.go @@ -0,0 +1,10 @@ +package main + +import ( + "net/http" +) + +func main() { + http.Handle("/", http.FileServer(http.Dir("./static"))) + http.ListenAndServe(":3000", nil) +} diff --git a/static/index.html b/static/index.html new file mode 100644 index 0000000..9bf28e4 --- /dev/null +++ b/static/index.html @@ -0,0 +1,12 @@ + + +
+ + + +