wip: file download

This commit is contained in:
loveuer
2024-10-13 22:19:41 +08:00
parent 777253063b
commit 0b58c3347b
7 changed files with 190 additions and 6 deletions

View File

@ -34,6 +34,8 @@ func Init(ctx context.Context) error {
register("/api/bucket/files", handler.BucketFiles)
register("/api/bucket/create", handler.BucketCreate)
register("/api/file/upload", handler.FileUpload)
register("/api/file/info", handler.FileInfo)
register("/api/file/get", handler.FileGet)
return nil
}