Skip to content

Instantly share code, notes, and snippets.

@Bebbolus
Created November 30, 2018 16:36
Show Gist options
  • Save Bebbolus/c095a8b187ef560b94ef29a4d8bc8665 to your computer and use it in GitHub Desktop.
Save Bebbolus/c095a8b187ef560b94ef29a4d8bc8665 to your computer and use it in GitHub Desktop.
var chain []middleware //empty chain
func main() {
chain = append(chain, pass("GET|POST"))
http.HandleFunc("/", Chain(controller, chain...))
log.Fatal(http.ListenAndServe(":8080", nil))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment