This commit is contained in:
2024-02-22 14:14:11 -07:00
parent 044bd9820e
commit 3bebca6b48
8 changed files with 196 additions and 0 deletions

10
api/resize.go Normal file
View File

@ -0,0 +1,10 @@
package api
import (
"atri.dad/lib"
"github.com/labstack/echo/v4"
)
func ResizeHandler(c echo.Context) error {
return lib.ResizeImg(c)
}