11 lines
178 B
Go
11 lines
178 B
Go
package handlers
|
|
|
|
import (
|
|
"github.com/labstack/echo/v4"
|
|
"template/cmd/handlers/view"
|
|
)
|
|
|
|
func IncludeRouters(app *echo.Echo) {
|
|
app.POST("/api/widget/view", view.BannerView)
|
|
}
|