Files
kt-connect/pkg/kt/command/author.go
2020-03-02 13:44:40 +08:00

15 lines
185 B
Go

package command
import (
"github.com/urfave/cli"
)
// NewCliAuthor return cli author
func NewCliAuthor() []cli.Author {
return []cli.Author{
{
Name: "rdc incubator",
},
}
}