Spaces:
Sleeping
Sleeping
File size: 301 Bytes
b302612 a6259d7 26dede0 a6259d7 26dede0 a6259d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import os
import sys
# Add the 'app' directory to sys.path
app_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'app')
if app_dir not in sys.path:
sys.path.append(app_dir)
# Import and run FinalApp.py
import FinalApp
FinalApp.main() # Call the main function directly if defined
|