| 1234567891011121314151617181920212223 |
- """
- GitLab CI module commands and functionality.
- Manage GitLab CI/CD pipelines and configurations and template operations.
- """
- from pathlib import Path
- from typing import List, Optional
- import typer
- from rich.table import Table
- from ...core.command import BaseModule
- class GitLabCIModule(BaseModule):
- """Module for managing gitlab ci configurations."""
- def __init__(self):
- super().__init__(name="gitlab_ci", icon="🦊", description="Manage GitLab CI/CD pipelines and configurations")
- def add_module_commands(self, app: typer.Typer) -> None:
- """Add Module-specific commands to the app."""
- pass
|