Reduced memory usage

This commit is contained in:
Eduard Urbach 2023-09-02 09:19:11 +02:00
parent ad033d4315
commit 7df818ffff
Signed by: eduard
GPG key ID: 49226B848C78F6C8
9 changed files with 95 additions and 84 deletions

7
keyValue.go Normal file
View file

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