pp_projekt/router/routes.go

22 lines
245 B
Go
Raw Normal View History

2018-11-24 20:48:46 +01:00
package router
import "net/http"
import "../test"
type Route struct {
Name string
Method string
Pattern string
HandlerFunc http.HandlerFunc
}
type Routes []Route
var routes = Routes{
Route{
"Index",
"GET",
"/",
test.Index,
},
}