Skip to content

Instantly share code, notes, and snippets.

@thiagozs
Forked from mrrooijen/server.go
Created May 27, 2016 13:28
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 thiagozs/b252ff198b3378f9a3bafbb17689dde0 to your computer and use it in GitHub Desktop.
Save thiagozs/b252ff198b3378f9a3bafbb17689dde0 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"github.com/codegangsta/negroni"
"github.com/julienschmidt/httprouter"
"net/http"
)
func main() {
// mux := http.NewServeMux()
// mux.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) {
// fmt.Fprintln(w, "Welcome to the homepage using http router")
// })
router := httprouter.New()
router.GET("/", func(w http.ResponseWriter, req *http.Request, _ map[string]string) {
fmt.Fprintln(w, "Welcome to the homepage using http router")
})
n := negroni.Classic()
//n.UseHandler(mux)
n.UseHandler(router)
n.Run(":9999")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment