mirror of
https://github.com/wahyd4/kt-connect.git
synced 2026-08-09 13:26:27 +10:00
15 lines
185 B
Go
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",
|
|
},
|
|
}
|
|
}
|