Skip to content
Snippets Groups Projects
api.go 151 B
package webapi

import (
	"github.com/labstack/echo"
)

func AddEndpoint(url string, handler func(c echo.Context) error) {
	Server.GET(url, handler)
}