13 lines
259 B
Python
13 lines
259 B
Python
|
|
|
||
|
|
import sys
|
||
|
|
import os
|
||
|
|
sys.path.append(os.path.join(os.getcwd(), "backend"))
|
||
|
|
|
||
|
|
try:
|
||
|
|
from app.api import celestial_position
|
||
|
|
print("Import successful")
|
||
|
|
except Exception as e:
|
||
|
|
print(f"Import failed: {e}")
|
||
|
|
import traceback
|
||
|
|
traceback.print_exc()
|