router/keyValue.go

7 lines
109 B
Go

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