docs/commands/stop.go

10 lines
164 B
Go

package commands
import "github.com/docker/machine/cli"
func cmdStop(c *cli.Context) {
if err := runActionWithContext("stop", c); err != nil {
fatal(err)
}
}