Skip to content

Instantly share code, notes, and snippets.

@rndD
Created December 28, 2014 16:16
Show Gist options
  • Save rndD/7de51945aaf137e15501 to your computer and use it in GitHub Desktop.
Save rndD/7de51945aaf137e15501 to your computer and use it in GitHub Desktop.
A tour of GO: Exercise: HTTP Handlers
package main
import (
"fmt"
"log"
"net/http"
)
type String string
type Struct struct {
Greeting string
Punct string
Who string
}
func (s String) ServeHTTP(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, s)
}
func (s *Struct) ServeHTTP(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, s.Who+s.Punct+s.Greeting)
}
func main() {
http.Handle("/string", String("I'm a frayed knot."))
http.Handle("/struct", &Struct{"Hello", ":", "Gophers!"})
log.Fatal(http.ListenAndServe("192.168.0.200:4000", nil))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment