Added trailing slash for static routes

This commit is contained in:
Eduard Urbach 2024-03-13 13:04:03 +01:00
parent 0323126f2c
commit a7d64037a7
Signed by: eduard
GPG key ID: 49226B848C78F6C8
8 changed files with 119 additions and 96 deletions

11
flow.go Normal file
View 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
)