mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 00:39:32 +08:00
14 lines
292 B
Go
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"`
|
|
}
|