Coverage for app/controllers/main/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.2.7, created at 2024-09-13 18:43 +0000
« prev ^ index » next coverage.py v7.2.7, created at 2024-09-13 18:43 +0000
1from flask import Blueprint
3# Blueprint Configuration
4main_bp = Blueprint(
5 'main', __name__,
6 template_folder='templates',
7 static_folder='static'
8)
10from app.controllers.main import routes