- from __future__ import annotations
- from ..core.module import Module
- from ..core.registry import registry
- class KestraModule(Module):
- """Module for managing Kestra workflows and configurations."""
-
- name: str = "kestra"
- description: str = "Manage Kestra workflows and configurations"
- # Register the module
- registry.register(KestraModule)
|