mirror of
https://github.com/leonvanzyl/autocoder.git
synced 2026-01-29 22:02:05 +00:00
- Add CI workflow with Python (ruff lint, security tests) and UI (ESLint, TypeScript, build) jobs - Add ruff, mypy, pytest to requirements.txt - Add pyproject.toml with ruff configuration - Fix import sorting across Python files (ruff --fix) - Fix test_security.py expectations to match actual security policy - Remove invalid 'eof' command from ALLOWED_COMMANDS 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
23 lines
550 B
Python
23 lines
550 B
Python
"""
|
|
API Routers
|
|
===========
|
|
|
|
FastAPI routers for different API endpoints.
|
|
"""
|
|
|
|
from .agent import router as agent_router
|
|
from .assistant_chat import router as assistant_chat_router
|
|
from .features import router as features_router
|
|
from .filesystem import router as filesystem_router
|
|
from .projects import router as projects_router
|
|
from .spec_creation import router as spec_creation_router
|
|
|
|
__all__ = [
|
|
"projects_router",
|
|
"features_router",
|
|
"agent_router",
|
|
"spec_creation_router",
|
|
"filesystem_router",
|
|
"assistant_chat_router",
|
|
]
|