Initial commit

This commit is contained in:
github-classroom[bot]
2024-02-26 19:09:59 +00:00
committed by GitHub
commit 1209dfe48d
10 changed files with 2214 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
from flask import Flask, request, jsonify
app = Flask(__name__)
@app.route('/api/ping', methods=['GET'])
def send():
return jsonify({"status": "ok"}), 200
if __name__ == "__main__":
app.run()