1
0
mirror of https://github.com/rancher/os.git synced 2025-06-18 11:17:25 +00:00
os/cmd/control/dev.go
Wang Long 9e15059789 Replace rancherio with rancher
Signed-off-by: Wang Long <long.wanglong@huawei.com>
2015-10-12 19:50:57 +08:00

12 lines
177 B
Go

package control
import (
"fmt"
"github.com/codegangsta/cli"
"github.com/rancher/os/util"
)
func devAction(c *cli.Context) {
fmt.Println(util.ResolveDevice(c.Args()[0]))
}