33 lines
1013 B
Python
33 lines
1013 B
Python
from .initialize_default_department import (
|
|
create_occupant_types_defaults,
|
|
create_application_defaults,
|
|
)
|
|
from .initiator import init_api_enums_build_types
|
|
from .model_initator import copy_validations_to_database
|
|
from .modules_and_services_init import (
|
|
create_endpoints_from_api_functions,
|
|
create_modules_and_services_and_actions,
|
|
)
|
|
|
|
from .event_initator import (
|
|
add_events_all_services_and_occupant_types,
|
|
create_all_events_from_actions,
|
|
add_events_to_system_super_user,
|
|
)
|
|
from .initialize_identity_address_defaults import (
|
|
create_identity_address_defaults,
|
|
)
|
|
|
|
__all__ = [
|
|
"create_application_defaults",
|
|
"create_occupant_types_defaults",
|
|
"init_api_enums_build_types",
|
|
"copy_validations_to_database",
|
|
"create_endpoints_from_api_functions",
|
|
"create_modules_and_services_and_actions",
|
|
"create_all_events_from_actions",
|
|
"add_events_all_services_and_occupant_types",
|
|
"create_identity_address_defaults",
|
|
"add_events_to_system_super_user",
|
|
]
|