package api import ( "net/http" "github.com/labstack/echo/v4" ) func PostCopy(c echo.Context) error { return c.String(http.StatusOK, ``) }