summaryrefslogtreecommitdiff
path: root/cmd/podman/network.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/podman/network.go')
-rw-r--r--cmd/podman/network.go31
1 files changed, 0 insertions, 31 deletions
diff --git a/cmd/podman/network.go b/cmd/podman/network.go
deleted file mode 100644
index 702593e5c..000000000
--- a/cmd/podman/network.go
+++ /dev/null
@@ -1,31 +0,0 @@
-//+build !remoteclient
-
-package main
-
-import (
- "github.com/containers/libpod/cmd/podman/cliconfig"
- "github.com/spf13/cobra"
-)
-
-var networkcheckDescription = "Manage networks"
-var networkcheckCommand = cliconfig.PodmanCommand{
- Command: &cobra.Command{
- Use: "network",
- Short: "Manage Networks",
- Long: networkcheckDescription,
- RunE: commandRunE(),
- },
-}
-
-var networkcheckCommands = []*cobra.Command{
- _networkCreateCommand,
- _networkinspectCommand,
- _networklistCommand,
- _networkrmCommand,
-}
-
-func init() {
- networkcheckCommand.AddCommand(networkcheckCommands...)
- networkcheckCommand.SetUsageTemplate(UsageTemplate())
- rootCmd.AddCommand(networkcheckCommand.Command)
-}