23 lines
670 B
Python
23 lines
670 B
Python
"""databus - DEPRECATED shim. Use app.domains.databus.
|
|
|
|
Phase 4.5 of AUDIT-2026-Q3.md moved app/databus/ to app.domains.databus/.
|
|
This shim re-exports the canonical public surface so legacy imports like
|
|
`from app.databus import databus` keep working.
|
|
|
|
MIGRATION: replace `from app.databus import ...` with
|
|
`from app.domains.databus import ...`.
|
|
"""
|
|
from app.domains.databus import * # noqa: F403
|
|
from app.domains.databus import ( # noqa: F401
|
|
AccessController,
|
|
ConsumerType,
|
|
DataBus,
|
|
KeyAffinitySelector,
|
|
SchemaValidator,
|
|
SocialDataAggregator,
|
|
XTwitterProvider,
|
|
access_controller,
|
|
databus,
|
|
key_affinity,
|
|
schema_validator,
|
|
)
|