k3s/pkg/cli/ctr/ctr.go

12 lines
145 B
Go
Raw Normal View History

2019-06-30 16:30:25 +00:00
package ctr
import (
"github.com/rancher/k3s/pkg/ctr"
"github.com/urfave/cli"
)
func Run(ctx *cli.Context) error {
ctr.Main()
return nil
}