# minecraft_helper **Repository Path**: RishChen/minecraft_helper ## Basic Information - **Project Name**: minecraft_helper - **Description**: Minecraft管理辅助系统 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-11-08 - **Last Updated**: 2025-11-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Minecraft Helper 这是一个基于FastAPI的Minecraft辅助工具系统。 ## 功能特性 - 用户管理模块(增删改查) - 角色管理模块(增删改查) ## 安装依赖 ```bash uv sync ``` ## 运行应用 使用uvicorn: ```bash uvicorn main:app --reload ``` ## API 文档 访问以下地址查看自动生成的API文档: - Swagger UI: http://localhost:8000/docs - ReDoc: http://localhost:8000/redoc ## 用户管理API ### 获取用户列表 ```http GET /api/v1/users/ ``` ### 创建用户 ```http POST /api/v1/users/ ``` ### 获取特定用户 ```http GET /api/v1/users/{user_id} ``` ### 更新用户 ```http PUT /api/v1/users/{user_id} ``` ### 删除用户 ```http DELETE /api/v1/users/{user_id} ```