Commit ·
a36d63a
1
Parent(s): a00ae9f
feat: Add __init__.py for integrations module (#10)
Browse files- feat: Add __init__.py for integrations module (501288a68f15969c2f7a0fd1197849236deb9545)
brain/app/integrations/__init__.py
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""FairRelay integrations - LoRRI and other TMS platforms."""
|
| 2 |
+
from app.integrations.lorri import router as lorri_router
|
| 3 |
+
|
| 4 |
+
__all__ = ["lorri_router"]
|