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, 14 insertions, 0 deletions
diff --git a/tests/one.go b/tests/one.go
new file mode 100644
index 0000000..15fd27b
--- /dev/null
+++ b/tests/one.go
@@ -0,0 +1,14 @@
+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