PKGBUILD/cmd/remote/remote.go

19 lines
237 B
Go
Raw Normal View History

2018-11-19 21:36:21 +00:00
package remote
import (
"github.com/spf13/cobra"
)
var configDir string
var remoteCmd = &cobra.Command{
Use: "remote",
Short: "remote",
}
func InitCmd(cmd *cobra.Command, c string) {
configDir = c
cmd.AddCommand(remoteCmd)
}