container-manager-mcp 0.0.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,24 @@
1
+ #!/usr/bin/env python
2
+ # coding: utf-8
3
+
4
+ from container_manager.container_manager import (
5
+ main,
6
+ ContainerManagerBase,
7
+ DockerManager,
8
+ PodmanManager,
9
+ )
10
+ from container_manager.container_manager_mcp import container_manager_mcp
11
+
12
+ """
13
+ container-manager
14
+
15
+ Manage your containers using docker, podman, compose, or docker swarm!
16
+ """
17
+
18
+ __all__ = [
19
+ "main",
20
+ "container_manager_mcp",
21
+ "ContainerManagerBase",
22
+ "DockerManager",
23
+ "PodmanManager",
24
+ ]