ci.py 353 B

12345678910111213
  1. from __future__ import annotations
  2. from ..core.module import Module
  3. from ..core.registry import registry
  4. class CIModule(Module):
  5. """Module for managing CI/CD automation templates."""
  6. name: str = "ci"
  7. description: str = "Manage CI/CD automation templates (GitHub Actions, GitLab CI, Kestra)"
  8. # Register the module
  9. registry.register(CIModule)