Skip to content

Instantly share code, notes, and snippets.

@vly
Created April 21, 2013 04:55
Show Gist options
  • Save vly/5428527 to your computer and use it in GitHub Desktop.
Save vly/5428527 to your computer and use it in GitHub Desktop.
Golang tour #57
package main
import (
"fmt"
"net/http"
)
type String string
type Struct struct {
Greeting string
Punct string
Who string
}
func (s Struct) ServeHTTP(
w http.ResponseWriter,
r *http.Request) {
fmt.Fprint(w, s.Greeting, s.Punct, s.Who)
}
func (s String) ServeHTTP(
w http.ResponseWriter,
r *http.Request) {
fmt.Fprint(w, s)
}
func main() {
http.Handle("/string", String("Good afterble, cunstanoon"))
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