Skip to content

Instantly share code, notes, and snippets.

@ksomemo
Created August 4, 2014 08:02
Show Gist options
  • Save ksomemo/b0a43986ab867c904ddc to your computer and use it in GitHub Desktop.
Save ksomemo/b0a43986ab867c904ddc to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"net/http"
)
type Hello struct{}
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 (h Hello) ServeHTTP(
w http.ResponseWriter,
r *http.Request) {
fmt.Fprint(w, "Hello!")
}
func (s Struct) ServeHTTP(
w http.ResponseWriter,
r *http.Request) {
fmt.Fprint(w, s)
}
func main() {
// your http.Handle calls here
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