mirror of
https://github.com/docker/docs.git
synced 2026-04-04 02:08:57 +07:00
14 lines
201 B
Go
14 lines
201 B
Go
package commands
|
|
|
|
import (
|
|
log "github.com/Sirupsen/logrus"
|
|
|
|
"github.com/codegangsta/cli"
|
|
)
|
|
|
|
func cmdIp(c *cli.Context) {
|
|
if err := runActionWithContext("ip", c); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|