Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Command = &cobra.Command{ Use: "install <moduleName> [loadFuncName[,loadFuncName[,...]]]", Short: "install goner component and generate loaded code", RunE: func(cmd *cobra.Command, args []string) (err error) { if len(args) < 1 { return errors.New("must provide package full name") } installModule = args[0] if len(args) > 1 { useLoaders = strings.Split(args[1], ",") } if err = Install(installModule, useLoaders, onlyPrintLoadFunc); err != nil { return } return nil }, }
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.