diff --git a/.gitignore b/.gitignore index 723ef36..255956f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -.idea \ No newline at end of file +.idea +tmp/ \ No newline at end of file diff --git a/main.go b/main.go index 90a382e..ff2a4f6 100644 --- a/main.go +++ b/main.go @@ -20,7 +20,7 @@ func main() { }) http.HandleFunc("/", func(writer http.ResponseWriter, request *http.Request) { - + writer.Write([]byte("Hallo")) }) http.ListenAndServe(":8080", nil)