Skip to content

Instantly share code, notes, and snippets.

@miry
Created November 3, 2014 14:55
Show Gist options
  • Save miry/b5e2b8200b3c43896ad9 to your computer and use it in GitHub Desktop.
Save miry/b5e2b8200b3c43896ad9 to your computer and use it in GitHub Desktop.
My first web server
package main
import (
"fmt"
"net/http"
)
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 (s *Struct) ServeHTTP(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, s)
}
func main() {
// your http.Handle calls here
http.Handle("/foo", String("I'm ok nice to meet you"))
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