"""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", ]