chore: restructured project, updated readme
This commit is contained in:
30
src/core/__init__.py
Normal file
30
src/core/__init__.py
Normal file
@@ -0,0 +1,30 @@
|
||||
"""Core domain models and business constants."""
|
||||
|
||||
from .models import (
|
||||
Apparat,
|
||||
ApparatData,
|
||||
Book,
|
||||
BookData,
|
||||
ELSA,
|
||||
MailData,
|
||||
Prof,
|
||||
SemapDocument,
|
||||
Subjects,
|
||||
XMLMailSubmission,
|
||||
)
|
||||
from .constants import *
|
||||
from .semester import Semester
|
||||
|
||||
__all__ = [
|
||||
"Apparat",
|
||||
"ApparatData",
|
||||
"Book",
|
||||
"BookData",
|
||||
"ELSA",
|
||||
"MailData",
|
||||
"Prof",
|
||||
"SemapDocument",
|
||||
"Subjects",
|
||||
"XMLMailSubmission",
|
||||
"Semester",
|
||||
]
|
||||
Reference in New Issue
Block a user