from __future__ import annotations from ..core.module import Module from ..core.registry import registry class PackerModule(Module): """Module for managing Packer templates and configurations.""" name: str = "packer" description: str = "Manage Packer templates and configurations" # Register the module registry.register(PackerModule)