- Archived 'aether_sql_tables' and 'legacy_router_logs' to documentation/archive/. - Static schema documentation is now superseded by the 'ae_obj_info' MCP tool and shared agents_sync metadata.
52 lines
1.4 KiB
Markdown
52 lines
1.4 KiB
Markdown
# Router: registry
|
|
|
|
**File:** app/routers/registry.py
|
|
|
|
**Routes found:** 0
|
|
|
|
**Functions:** 1 — setup_routers
|
|
|
|
**Classes:** 0 —
|
|
|
|
|
|
|
|
## Routes
|
|
- (no @router.<method> decorators found)
|
|
|
|
|
|
|
|
## From-imports
|
|
|
|
- app.routers
|
|
|
|
- fastapi
|
|
|
|
|
|
|
|
## File preview (first 20 lines)
|
|
|
|
```python
|
|
|
|
from fastapi import FastAPI
|
|
from app.routers import (
|
|
ae_obj, aether_cfg, api_crud, api_crud_v2, api_crud_v3, api, importing, sql,
|
|
account, activity_log, address, archive, archive_content, contact, data_store,
|
|
event, event_abstract, event_badge, event_badge_importing, event_badge_template,
|
|
event_device, event_exhibit, event_exhibit_tracking, event_file, event_importing,
|
|
event_location, event_person, event_person_detail, event_person_tracking,
|
|
event_presentation, event_presenter, event_registration, event_session,
|
|
flask_cfg, fundraising, grant, hosted_file, api_v3_actions_hosted_file, log_client_viewing, lookup,
|
|
membership_cfg, membership_group, membership_person_group, membership_person,
|
|
membership_person_profile, membership_type, membership_person_type,
|
|
order, order_v3, order_line, order_cart, organization, page, person,
|
|
person_user, post, post_comment, product, qr, site, site_domain, user,
|
|
util_email, websockets_redis, e_confex, e_cvent, e_impexium, e_stripe
|
|
)
|
|
|
|
def setup_routers(app: FastAPI):
|
|
"""
|
|
Registers all application routers with their respective prefixes and tags.
|
|
"""
|
|
|
|
```
|