7 lines
95 B
Go
7 lines
95 B
Go
package api
|
|
|
|
type Route struct {
|
|
Path string
|
|
Handler http.HandlerFunc
|
|
Methods []string
|
|
}
|