kestra.py 386 B

123456789101112
  1. from ..core.module import Module
  2. from ..core.registry import registry
  3. class KestraModule(Module):
  4. """Module for managing Kestra workflows and configurations."""
  5. name = "kestra"
  6. description = "Manage Kestra workflows and configurations"
  7. files = ["inputs.yaml", "variables.yaml", "webhook.yaml", "flow.yml", "flow.yaml"]
  8. # Register the module
  9. registry.register(KestraModule)