Files
2024-08-10 12:17:51 +07:00

10 lines
171 B
Batchfile

@echo off
echo Starting the application...
python app.py
if %errorlevel% neq 0 (
echo Error: Failed to run the application.
pause
exit /b %errorlevel%
)
pause