router/keyValue.go
2023-09-02 09:19:11 +02:00

8 lines
109 B
Go

package router
// keyValue represents a URL parameter.
type keyValue struct {
Key string
Value string
}