aboutsummaryrefslogtreecommitdiff
path: root/tests/one.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/one.go')
-rw-r--r--tests/one.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/one.go b/tests/one.go
deleted file mode 100644
index 15fd27b..0000000
--- a/tests/one.go
+++ /dev/null
@@ -1,14 +0,0 @@
-package main
-
-import (
- "net/http"
-)
-
-func response(rw http.ResponseWriter, request *http.Request) {
- rw.Write([]byte("Hello world."))
-}
-
-func main() {
- http.HandleFunc("/", response)
- http.ListenAndServe(":3000", nil)
-}
bgstack15