13 lines
168 B
Go
13 lines
168 B
Go
|
package router
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
type Route struct {
|
||
|
Name string
|
||
|
Method string
|
||
|
Pattern string
|
||
|
HandlerFunc http.HandlerFunc
|
||
|
}
|
||
|
|
||
|
type Routes []Route
|