8 lines
103 B
Go
Raw Normal View History

2023-07-09 17:46:17 +02:00
package router
// Parameter is a URL parameter.
type Parameter struct {
Key string
Value string
}