Spaces:
Running
Running
File size: 328 Bytes
18b8b90 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import traceback
import sys
from pathlib import Path
# Add project root to path
sys.path.insert(0, str(Path(__file__).resolve().parent.parent))
try:
from app.api.api import api_router
print("API Router Imported Successfully!")
except Exception as e:
print("FAILED TO IMPORT API ROUTER!")
traceback.print_exc()
|