router.go 225 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 package router import "github.com/labstack/echo/v4" const ( API = "/api/v2" APIJoongNa = API + "/JoongNa" APIKeyword = APIJoongNa + "/:keyword" ) func Init(e *echo.Echo) { e.GET(APIKeyword, controller.Search) }