Spaces:
Sleeping
Sleeping
| from flask import Flask | |
| app = Flask(__name__) | |
| def index(): | |
| return "<h1>Server is running</h1>" | |
| def health(): | |
| return "ok", 200 | |
| if __name__ == "__main__": | |
| app.run(host="0.0.0.0", port=7860) | |