Improved performance

This commit is contained in:
Eduard Urbach 2024-03-14 23:26:59 +01:00
parent a7d64037a7
commit b04aadea09
Signed by: eduard
GPG key ID: 49226B848C78F6C8
7 changed files with 77 additions and 60 deletions

7
Parameter.go Normal file
View file

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