Update app.py
Browse files
app.py
CHANGED
|
@@ -54,5 +54,7 @@ def convert():
|
|
| 54 |
@app.route("/")
|
| 55 |
def health():
|
| 56 |
return "EPS API Running"
|
| 57 |
-
|
|
|
|
|
|
|
| 58 |
app.run(host="0.0.0.0", port=7860)
|
|
|
|
| 54 |
@app.route("/")
|
| 55 |
def health():
|
| 56 |
return "EPS API Running"
|
| 57 |
+
|
| 58 |
+
# ✅ THIS MUST BE OUTSIDE ALL ROUTES
|
| 59 |
+
if __name__ == "__main__":
|
| 60 |
app.run(host="0.0.0.0", port=7860)
|