router/Parameter.go

8 lines
111 B
Go

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