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

4
app/main/__init__.py Normal file
View File

@@ -0,0 +1,4 @@
from flask import Blueprint
bp = Blueprint('main', __name__)
from app.main import routes