Coverage for app/main/__init__.py: 100%
4 statements
« prev ^ index » next coverage.py v7.8.0, created at 2025-04-20 21:23 +0000
« prev ^ index » next coverage.py v7.8.0, created at 2025-04-20 21:23 +0000
1from flask import Blueprint
3"""
4initialization for the blueprint main
5"""
7bp = Blueprint("main", __name__)
9from app.main import routes