8 lines
109 B
Go
Raw Normal View History

2023-09-02 09:19:11 +02:00
package router
// keyValue represents a URL parameter.
type keyValue struct {
Key string
Value string
}