Skip to content

Instantly share code, notes, and snippets.

@marcesher
Created January 8, 2014 11:58
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 marcesher/8315820 to your computer and use it in GitHub Desktop.
Save marcesher/8315820 to your computer and use it in GitHub Desktop.
simple solution to go tour exercise for http.Handle
package main
import (
"fmt"
"net/http"
)
type String string
type Hello 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, h)
fmt.Fprint(w, r)
}
func main(){
http.Handle("/string", String("I'm a frayed not."))
http.Handle("/struct", &Hello{"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