Janus-backend / scratch /test_sentinel_import.py
DevodG's picture
deploy: Janus full system stabilization
24f95f0
import sys
import os
# Add backend to path
sys.path.append(os.path.join(os.getcwd(), 'backend'))
try:
from app.routers.sentinel import router
print("Sentinel router imported successfully")
except Exception as e:
import traceback
traceback.print_exc()
print(f"Error importing sentinel router: {e}")