k3s/pkg/cli/ctr/ctr.go

12 lines
151 B
Go
Raw Normal View History

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