Added tests and benchmarks

This commit is contained in:
Eduard Urbach 2023-07-09 17:46:17 +02:00
parent dd3f3280a0
commit cdcb158623
Signed by: eduard
GPG key ID: 49226B848C78F6C8
10 changed files with 330 additions and 29 deletions

7
Parameter.go Normal file
View file

@ -0,0 +1,7 @@
package router
// Parameter is a URL parameter.
type Parameter struct {
Key string
Value string
}