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