kestra.py 347 B

12345678910111213
  1. from __future__ import annotations
  2. from ..core.module import Module
  3. from ..core.registry import registry
  4. class KestraModule(Module):
  5. """Module for managing Kestra workflows and configurations."""
  6. name: str = "kestra"
  7. description: str = "Manage Kestra workflows and configurations"
  8. # Register the module
  9. registry.register(KestraModule)