8 lines
111 B
Go
Raw Normal View History

2024-03-14 23:26:59 +01:00
package router
// Parameter represents a URL parameter.
type Parameter struct {
Key string
Value string
}