Files
gaokao-volunteer-system/data/majors_catalog/__init__.py
Hermes Agent 6b1157fe19
Some checks failed
CI / pytest (Python 3.10) (push) Has been cancelled
CI / pytest (Python 3.11) (push) Has been cancelled
CI / pytest (Python 3.12) (push) Has been cancelled
feat(majors): add school catalog skeleton and verification
2026-06-17 12:46:04 +08:00

16 lines
300 B
Python

from .loader import MajorsCatalogLoader
from .models import (
MajorCatalogStatus,
NationalMajor,
SchoolCatalogStatus,
SchoolMajorOffering,
)
__all__ = [
"MajorsCatalogLoader",
"NationalMajor",
"SchoolMajorOffering",
"MajorCatalogStatus",
"SchoolCatalogStatus",
]