docker.py 339 B

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