mirror of
https://github.com/docker/docs.git
synced 2026-04-01 16:58:54 +07:00
14 lines
205 B
Go
14 lines
205 B
Go
package commands
|
|
|
|
import (
|
|
log "github.com/Sirupsen/logrus"
|
|
|
|
"github.com/codegangsta/cli"
|
|
)
|
|
|
|
func cmdKill(c *cli.Context) {
|
|
if err := runActionWithContext("kill", c); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|