File size: 321 Bytes
24f95f0
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

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}")