2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-05 04:37:17 +08:00
Files
panel/internal/apps/s3fs/request.go
2024-09-28 02:43:00 +08:00

14 lines
292 B
Go

package s3fs
type Create struct {
Ak string `form:"ak" json:"ak"`
Sk string `form:"sk" json:"sk"`
Bucket string `form:"bucket" json:"bucket"`
URL string `form:"url" json:"url"`
Path string `form:"path" json:"path"`
}
type Delete struct {
ID int64 `form:"id" json:"id"`
}