Initial commit

This commit is contained in:
2024-09-22 00:19:49 -03:00
commit b12c1a9f6c
5 changed files with 181 additions and 0 deletions

8
app.py Normal file
View File

@@ -0,0 +1,8 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def hello_world():
return render_template("index.html")