8 lines
205 B
Python
8 lines
205 B
Python
# Backend routes
|
|
from . import auth_routes
|
|
from . import subject_routes
|
|
from . import grade_routes
|
|
from . import period_routes
|
|
|
|
__all__ = ["auth_routes", "subject_routes", "grade_routes", "period_routes"]
|