router/Parameter.go

7 lines
111 B
Go

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