Skip to content

Instantly share code, notes, and snippets.

@satojkovic
Created August 27, 2014 14:15
Show Gist options
  • Save satojkovic/302cf2c28402f78d8442 to your computer and use it in GitHub Desktop.
Save satojkovic/302cf2c28402f78d8442 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
}
type JpStr string
func (j JpStr) ServeHTTP(
w http.ResponseWriter,
r *http.Request) {
fmt.Fprintf(w, string(j))
}
func (s String) ServeHTTP(
w http.ResponseWriter,
r *http.Request) {
fmt.Fprintf(w, string(s))
}
func (s Struct) ServeHTTP(
w http.ResponseWriter,
r *http.Request) {
fmt.Fprintf(w, "%s %s %s", s.Greeting, s.Punct, s.Who)
}
func main() {
// your http.Handle calls here
http.Handle("/string", String("I'm a frayed knot."))
http.Handle("/struct", &Struct{"Hello", ":", "Gophers!"})
http.Handle("/jpstr", JpStr("日本語"))
http.ListenAndServe("localhost:4000", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment