Coverage for app/controllers/serviceLearning/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2024-01-29 16:34 +0000

1from flask import Blueprint 

2 

3# Blueprint Configuration 

4serviceLearning_bp = Blueprint( 

5 'serviceLearning', __name__, 

6 template_folder='templates', 

7 static_folder='static' 

8) 

9 

10from app.controllers.serviceLearning import routes