| 1234567891011121314151617181920212223 |
- """
- Vagrant module commands and functionality.
- Manage Vagrant environments and virtual machines 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 VagrantModule(BaseModule):
- """Module for managing vagrant configurations."""
-
- def __init__(self):
- super().__init__(name="vagrant", icon="📦", description="Manage Vagrant environments and virtual machines")
- def add_module_commands(self, app: typer.Typer) -> None:
- """Add Module-specific commands to the app."""
- pass
|