package main import ( "net/http" "github.com/gorilla/mux" ) type Route struct { Name string Method string Pattern string HandlerFunc http.HandlerFunc } type Routes []Route func NewRouter() *mux.Router { router := mux.NewRouter().StrictSlash(true) for _, route := range routes { router. Methods(route.Method). Path(route.Pattern). Name(route.Name). Handler(route.HandlerFunc) } return router } var routes = Routes{ Route{ "Index", "GET", "/", index, }, Route{ "ShortenAPI", "GET", "/api/v1/action/shorten", APIshorten, }, Route{ "LookupAPI", "GET", "/api/v1/action/lookup", APIlookup, }, Route{ "GetAll", "GET", "/all", all, }, Route{ "Shorten", "POST", "/shorten", shorten, }, Route{ "Redirect", "GET", "/{token}", redirect, }, }