docs/commands/stop.go

14 lines
204 B
Go

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