__init__.py
python
| 1 | """Clean REST API — /api/... |
| 2 | |
| 3 | Routes are mounted without a version prefix since MuseHub has one canonical API. |
| 4 | This package replaces the /api/v1 pattern — if the API ever needs to break, |
| 5 | a new package is created and old routes remain until clients migrate. |
| 6 | |
| 7 | Routers exported here are mounted in main.py under /api. |
| 8 | """ |
| 9 | from musehub.api.routes.api import repos, identities, search |
| 10 | |
| 11 | __all__ = ["repos", "identities", "search"] |