arba yesodot blueprint init

This commit is contained in:
Yisroel Baum 2024-09-24 12:39:53 +03:00
parent d6c532ea49
commit 90c0f3ae98
3 changed files with 30 additions and 0 deletions

View file

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