2018-12-04 19:15:41 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
)
|
|
|
|
|
|
|
|
type route struct {
|
|
|
|
Name string
|
|
|
|
Adres string
|
|
|
|
HandlerFunction http.HandlerFunc
|
|
|
|
}
|
|
|
|
|
|
|
|
type routes []route
|
|
|
|
|
|
|
|
var registredRoutes = routes{
|
|
|
|
route{"Index", "/", index},
|
2018-12-08 18:01:33 +01:00
|
|
|
route{"GetAll", "/getfromdb/{tableName}", getAll},
|
2018-12-04 19:15:41 +01:00
|
|
|
route{"GetOne", "/getfromdb/{primaryKey}", getIndex},
|
|
|
|
}
|
|
|
|
|
|
|
|
func newRouter() *mux.Router {
|
|
|
|
|
|
|
|
router := mux.NewRouter().StrictSlash(true)
|
|
|
|
for _, r := range registredRoutes {
|
|
|
|
router.
|
|
|
|
Path(r.Adres).
|
|
|
|
Name(r.Name).
|
|
|
|
Handler(r.HandlerFunction)
|
|
|
|
}
|
|
|
|
return router
|
|
|
|
}
|