1
0
mirror of https://github.com/bytedream/docker4ssh.git synced 2025-07-06 05:36:21 +02:00
Files
docker4ssh/server/cmd/cmd.go
2021-12-19 17:30:51 +01:00

19 lines
266 B
Go

package cmd
import (
"fmt"
"github.com/spf13/cobra"
"os"
)
var rootCmd = &cobra.Command{
Use: "docker4ssh",
Short: "Docker containers and more via ssh",
}
func Execute() {
if err := rootCmd.Execute(); err != nil {
fmt.Fprintf(os.Stderr, "%v", err)
}
}