Add print statement for serving connections

This commit is contained in:
Michachatz
2026-04-26 15:37:30 +02:00
committed by GitHub
parent 2b93ae73ff
commit 7f8948bba9
+1
View File
@@ -220,5 +220,6 @@ def not_found(error):
if __name__ == '__main__':
try:
serve(app, host="0.0.0.0", port=80, threads=12)
print("Serving connections from port 80....")
except:
app.run(debug=True, host="0.0.0.0", port=80)