February 2018
Intermediate to advanced
340 pages
9h 43m
English
package main import ( "fmt" "net/http" ) type SimpleHTTP struct{} func (s SimpleHTTP) ServeHTTP(rw http.ResponseWriter, r *http.Request) { fmt.Fprintln(rw, "Hello world") } func main() { fmt.Println("Starting HTTP server on port 8080") // Eventually you can use // http.ListenAndServe(":8080", SimpleHTTP{}) s := &http.Server{Addr: ":8080", Handler: SimpleHTTP{}} s.ListenAndServe() }

Read now
Unlock full access