Improved performance

This commit is contained in:
Eduard Urbach 2024-03-14 15:11:00 +01:00
parent 00c85d5e15
commit b30dad77dc
Signed by: eduard
GPG key ID: 49226B848C78F6C8
4 changed files with 27 additions and 22 deletions

7
param.go Normal file
View file

@ -0,0 +1,7 @@
package server
// param represents a URL parameter in a route like `/user/:id`.
type param struct {
Name string
Value string
}