1
0
mirror of https://github.com/rancher/os.git synced 2025-06-20 04:01:55 +00:00
os/cmd/control/dev.go

12 lines
179 B
Go
Raw Normal View History

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