""" Education Module API This module contains all API endpoints for the education module """ from .education_views import ( StudentViewSet, ClassViewSet, ) __all__ = [ 'StudentViewSet', 'ClassViewSet', ]