summaryrefslogtreecommitdiff
path: root/libpod/container_linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'libpod/container_linux.go')
-rw-r--r--libpod/container_linux.go10
1 files changed, 1 insertions, 9 deletions
diff --git a/libpod/container_linux.go b/libpod/container_linux.go
index b271a3089..823a590dd 100644
--- a/libpod/container_linux.go
+++ b/libpod/container_linux.go
@@ -6,18 +6,10 @@ import (
"github.com/containernetworking/plugins/pkg/ns"
)
-type containerStateLinux struct {
+type containerPlatformState struct {
// NetNSPath is the path of the container's network namespace
// Will only be set if config.CreateNetNS is true, or the container was
// told to join another container's network namespace
NetNS ns.NetNS `json:"-"`
}
-
-// containerStateWindows is intentionally left as a blank stub
-type containerStateWindows struct {
-}
-
-// containerStateDarwin is intentionally left as a blank stub
-type containerStateDarwin struct {
-}