file_system/internal/api/handlers/bucket_commands.go
root 00a0e583a8 添加存储桶删除功能
- 新增 DeleteBucketHandler 处理存储桶删除请求
- 添加 DELETE /buckets API 端点
- 在前端界面添加删除存储桶按钮功能
- 添加存储桶删除请求验证器

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-19 16:40:09 +08:00

12 lines
161 B
Go

package handlers
type CreateBucketCommand struct {
BucketName string
}
type ListBucketsQuery struct{}
type DeleteBucketCommand struct {
BucketName string
}