first commit
This commit is contained in:
31
api_events/tasks2events/__init__.py
Normal file
31
api_events/tasks2events/__init__.py
Normal file
@@ -0,0 +1,31 @@
|
||||
from tasks2events.common_tasks.default_user import AuthDefaultEventBlock
|
||||
from tasks2events.employee_tasks.super_user import SuperUserEventBlock
|
||||
|
||||
from tasks2events.occupant_tasks.build_manager import BuildManager
|
||||
from tasks2events.occupant_tasks.build_owner import BuildOwner
|
||||
from tasks2events.occupant_tasks.build_resident import BuildResident
|
||||
from tasks2events.occupant_tasks.build_tenant import BuildTenant
|
||||
from tasks2events.occupant_tasks.build_represent import BuildRepresent
|
||||
from tasks2events.occupant_tasks.meeting_writer import BuildMeetingWriter
|
||||
from tasks2events.occupant_tasks.meeting_advisor import BuildMeetingAdvisor
|
||||
from tasks2events.occupant_tasks.meeting_attendance import BuildMeetingAttendance
|
||||
from tasks2events.occupant_tasks.meeting_president import BuildMeetingPresident
|
||||
from tasks2events.occupant_tasks.meeting_voted_president import (
|
||||
BuildMeetingVotedPresident,
|
||||
)
|
||||
|
||||
|
||||
__all__ = [
|
||||
"AuthDefaultEventBlock",
|
||||
"SuperUserEventBlock",
|
||||
"BuildManager",
|
||||
"BuildOwner",
|
||||
"BuildResident",
|
||||
"BuildTenant",
|
||||
"BuildRepresent",
|
||||
"BuildMeetingWriter",
|
||||
"BuildMeetingPresident",
|
||||
"BuildMeetingAdvisor",
|
||||
"BuildMeetingAttendance",
|
||||
"BuildMeetingVotedPresident",
|
||||
]
|
||||
Reference in New Issue
Block a user