avatar / server.py
mwtuni's picture
server.py
1cb6f0d
raw
history blame contribute delete
232 Bytes
import traceback
print("=== Starting server ===")
try:
from app import app
print("Loaded app successfully.")
except Exception as e:
print("=== ERROR DURING IMPORT ===")
traceback.print_exc()
raise e