vagrant.py 344 B

12345678910111213
  1. from __future__ import annotations
  2. from ..core.module import Module
  3. from ..core.registry import registry
  4. class VagrantModule(Module):
  5. """Module for managing Vagrant configurations and files."""
  6. name: str = "vagrant"
  7. description: str = "Manage Vagrant configurations and files"
  8. # Register the module
  9. registry.register(VagrantModule)