This commit is contained in:
2025-01-04 14:40:52 +01:00
commit 053272b71a
13 changed files with 385 additions and 0 deletions

12
routes/home.py Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright Hersel Giannella
from quart import Blueprint, render_template
route_home = Blueprint('route_home', __name__)
@route_home.route('/')
async def home():
return await render_template('index.html')