Files
xiaoxia-saas/apps/api/README.md
T
Xiaoxia AI b5a62ee9a3 feat: initial SaaS scaffold
- domain: User, Workspace, Project, AssetLibrary, Asset, IngestJob
- ports: repository interfaces
- application: use cases
- adapters: in-memory
- API: FastAPI 5 routes
- worker: Celery ingest_asset
- tests: 4 passing
2026-06-15 15:17:40 +08:00

16 lines
321 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# xiaoxia-saas API
## 结构
- `app/core/`:配置与基础能力
- `app/api/`:路由组织
- `app/schemas/`:请求响应模型
- `app/dependencies.py`:依赖注入入口
- `main.py`FastAPI 启动入口
## 当前可用接口
- `GET /api/health`
- `GET /api/projects?workspace_id=...`
- `POST /api/projects`