This commit is contained in:
Yisroel Baum 2024-09-04 20:22:49 +03:00
commit c97e3e8d4e
21 changed files with 231 additions and 0 deletions

9
app/main/__init__.py Normal file
View file

@ -0,0 +1,9 @@
from flask import Blueprint
main = Blueprint('main',
__name__,
template_folder='templates',
static_folder='static',
url_prefix='/main')
from app.main import routes