Skip to content

Instantly share code, notes, and snippets.

@JenHsuan
Last active December 29, 2018 06:05
Show Gist options
  • Save JenHsuan/1ace42d8d67eb66c7db62900a401f898 to your computer and use it in GitHub Desktop.
Save JenHsuan/1ace42d8d67eb66c7db62900a401f898 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"net/http"
"github.com/julienschmidt/httprouter"
)
type car int
func (m car) ServeHTTP(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Mcleod-Key", "this is from mcleod")
w.Header().Set("Content-Type", "text/html; charset=utf-8")
fmt.Fprintln(w, "<h1>car</h1>")
}
func main() {
var c car
http.ListenAndServe(":8080", c)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment