mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
15 lines
260 B
Go
15 lines
260 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/julienschmidt/httprouter"
|
||
|
)
|
||
|
|
||
|
func (app *application) routes() *httprouter.Router {
|
||
|
router := httprouter.New()
|
||
|
|
||
|
router.HandlerFunc(http.MethodGet, "/v1/commands/:name", app.showCommandHandler)
|
||
|
return router
|
||
|
}
|