Skip to content

Instantly share code, notes, and snippets.

@lalizita
Created August 9, 2022 00:09
Show Gist options
  • Save lalizita/455f94c127b5278f690f9bed3d7a783c to your computer and use it in GitHub Desktop.
Save lalizita/455f94c127b5278f690f9bed3d7a783c to your computer and use it in GitHub Desktop.
Simple server with go
package main
import (
"fmt"
"net/http"
)
func main() {
http.HandleFunc("/hello", func(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, "Hello my friend")
})
http.ListenAndServe(":8080", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment