package api import ( "net/http" "github.com/labstack/echo/v4" ) // PostCopy godoc // @Summary Get copy icon SVG // @Description Returns an SVG of a copy icon // @Tags post // @Accept json // @Produce html // @Success 200 {string} string "SVG content" // @Router /post/copy [get] func PostCopy(c echo.Context) error { return c.String(http.StatusOK, ``) }