Init commit

This commit is contained in:
2025-07-03 01:37:41 +03:00
commit 9d5a1119e6
5 changed files with 66 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def hello_world():
return render_template('index.html')