15 lines
199 B
Go
15 lines
199 B
Go
package main
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var syncSourceCmd = &cobra.Command{
|
|
Use: "source",
|
|
Short: "Synchronize source commands",
|
|
}
|
|
|
|
func init() {
|
|
syncCmd.AddCommand(syncSourceCmd)
|
|
}
|