18 lines
410 B
Python
18 lines
410 B
Python
"""Playbooks module for infrastructure automation tasks.
|
|
|
|
Playbooks define reusable sequences of steps (COMPOSITE tasks) for
|
|
deploying and configuring services on tenant servers.
|
|
"""
|
|
|
|
from app.playbooks.chatwoot import (
|
|
CompositeStep,
|
|
build_chatwoot_setup_steps,
|
|
create_chatwoot_setup_task,
|
|
)
|
|
|
|
__all__ = [
|
|
"CompositeStep",
|
|
"build_chatwoot_setup_steps",
|
|
"create_chatwoot_setup_task",
|
|
]
|