feat(main): adds main module

This commit is contained in:
2024-09-29 17:34:48 -03:00
parent d74faad9ec
commit 999ebb0c27
4 changed files with 10 additions and 0 deletions

6
app/main/routes.py Normal file
View File

@@ -0,0 +1,6 @@
from flask import render_template
from app.main import bp
@bp.route('/')
def index():
return render_template("index.html")