This commit is contained in:
Yisroel Baum 2024-09-29 08:14:01 +03:00
parent 298a398c2e
commit 9f90d357fd
6 changed files with 78 additions and 0 deletions

8
app/routes.py Normal file
View file

@ -0,0 +1,8 @@
from app import app
from flask import render_template
@app.route('/')
def home():
return render_template('index.html')