MouleeswaranM commited on
Commit
501288a
·
verified ·
1 Parent(s): a00ae9f

feat: Add __init__.py for integrations module

Browse files
Files changed (1) hide show
  1. brain/app/integrations/__init__.py +4 -0
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"]