Added trailing slash for static routes
This commit is contained in:
parent
0323126f2c
commit
a7d64037a7
8 changed files with 119 additions and 96 deletions
11
flow.go
Normal file
11
flow.go
Normal file
|
@ -0,0 +1,11 @@
|
|||
package router
|
||||
|
||||
// flow tells the main loop what it should do next.
|
||||
type flow int
|
||||
|
||||
// Control flow values.
|
||||
const (
|
||||
flowStop flow = iota
|
||||
flowBegin
|
||||
flowNext
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue