Skip to content

Instantly share code, notes, and snippets.

@raypereda
Last active August 29, 2015 13:58
Show Gist options
  • Select an option

  • Save raypereda/9928694 to your computer and use it in GitHub Desktop.

Select an option

Save raypereda/9928694 to your computer and use it in GitHub Desktop.
package main
import (
"net/http"
"fmt"
)
func main() {
http.Handle("/string", String("I'm a frayed knot."))
http.Handle("/struct", &Struct{"Hello", ":", "Gophers!"})
http.ListenAndServe("localhost:4000", nil)
}
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, "Got a string!")
}
func (st *Struct) ServeHTTP(
w http.ResponseWriter,
r *http.Request) {
fmt.Fprint(w, "Got a struct!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment