| 1234567891011121314151617181920212223 |
- """
- Packer module commands and functionality.
- Manage Packer templates and image building 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 PackerModule(BaseModule):
- """Module for managing Packer configurations."""
- def __init__(self):
- super().__init__(name="packer", icon="📦", description="Manage Packer templates and image building")
- def add_module_commands(self, app: typer.Typer) -> None:
- """Add Module-specific commands to the app."""
- pass
|