2021-05-29 18:22:51 +02:00
|
|
|
# -*- coding: UTF-8 -*
|
|
|
|
"""ScoDoc Flask views
|
|
|
|
"""
|
|
|
|
from flask import Blueprint
|
|
|
|
|
2021-05-31 00:14:15 +02:00
|
|
|
scolar_bp = Blueprint("scolar", __name__)
|
2021-05-29 18:22:51 +02:00
|
|
|
notes_bp = Blueprint("notes", __name__)
|
2021-05-31 00:14:15 +02:00
|
|
|
absences_bp = Blueprint("absences", __name__)
|
|
|
|
essais_bp = Blueprint("essais", __name__)
|
2021-05-29 18:22:51 +02:00
|
|
|
|
2021-05-31 00:14:15 +02:00
|
|
|
from app.views import notes, scolar, absences
|