18 lines
401 B
Python
18 lines
401 B
Python
from __future__ import annotations
|
|
|
|
from govoplan_scheduling.backend.db.models import (
|
|
SchedulingCandidateSlot,
|
|
SchedulingNotification,
|
|
SchedulingParticipant,
|
|
SchedulingPublicEnrollmentLink,
|
|
SchedulingRequest,
|
|
)
|
|
|
|
__all__ = [
|
|
"SchedulingCandidateSlot",
|
|
"SchedulingNotification",
|
|
"SchedulingParticipant",
|
|
"SchedulingPublicEnrollmentLink",
|
|
"SchedulingRequest",
|
|
]
|