feat: add s3 blob handler(by readll all :( )

This commit is contained in:
loveuer
2024-05-05 19:11:57 +08:00
parent 410a4c0d8d
commit 105d26efe4
30 changed files with 1483 additions and 19 deletions

View File

@ -5,6 +5,7 @@ import (
"github.com/loveuer/nf"
"nf-repo/internal/handler"
"nf-repo/internal/interfaces"
"nf-repo/internal/middleware/front"
"nf-repo/internal/opt"
)
@ -29,5 +30,7 @@ func NewApi(
api.Post("/proxy", handler.ProxyDownloadImage(mh, bh))
}
app.Use(front.NewFront(&front.DefaultFront, "dist/front/browser"))
return app
}