feat: Add __init__.py for integrations module

#10
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"]