Skip to content

Instantly share code, notes, and snippets.

@kei-s
Created September 25, 2014 11:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kei-s/7654b0ae37e0149f39a0 to your computer and use it in GitHub Desktop.
Save kei-s/7654b0ae37e0149f39a0 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"net/http"
)
type String string
type Struct struct {
Greeting string
Punct string
Who string
}
func (str String) ServeHTTP(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, str)
}
func (str Struct) ServeHTTP(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, fmt.Sprintf("%s %s %s", str.Greeting, str.Punct, str.Who))
}
func main() {
http.Handle("/string", String("I'm a frayed knot."))
http.Handle("/struct", &Struct{"Hello", ":", "Gophers!"})
http.ListenAndServe("localhost:4000", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment