- 新增 DeleteBucketHandler 处理存储桶删除请求 - 添加 DELETE /buckets API 端点 - 在前端界面添加删除存储桶按钮功能 - 添加存储桶删除请求验证器 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
161 B
Go
12 lines
161 B
Go
package handlers
|
|
|
|
type CreateBucketCommand struct {
|
|
BucketName string
|
|
}
|
|
|
|
type ListBucketsQuery struct{}
|
|
|
|
type DeleteBucketCommand struct {
|
|
BucketName string
|
|
}
|