16 lines
300 B
Python
16 lines
300 B
Python
from .loader import MajorsCatalogLoader
|
|
from .models import (
|
|
MajorCatalogStatus,
|
|
NationalMajor,
|
|
SchoolCatalogStatus,
|
|
SchoolMajorOffering,
|
|
)
|
|
|
|
__all__ = [
|
|
"MajorsCatalogLoader",
|
|
"NationalMajor",
|
|
"SchoolMajorOffering",
|
|
"MajorCatalogStatus",
|
|
"SchoolCatalogStatus",
|
|
]
|