コード例 #1
0
ファイル: basic_plugin.go プロジェクト: nttlabs/cli
/*
* Unlike most Go programs, the `Main()` function will not be used to run all of the
* commands provided in your plugin. Main will be used to initialize the plugin
* process, as well as any dependencies you might require for your
* plugin.
 */
func main() {
	// Any initialization for your plugin can be handled here
	//
	// Note: to run the plugin.Start method, we pass in a pointer to the struct
	// implementing the interface defined at "github.com/nttlabs/cli/plugin/plugin.go"
	//
	// Note: The plugin's main() method is invoked at install time to collect
	// metadata. The plugin will exit 0 and the Run([]string) method will not be
	// invoked.
	plugin.Start(new(BasicPlugin))
	// Plugin code should be written in the Run([]string) method,
	// ensuring the plugin environment is bootstrapped.
}
コード例 #2
0
ファイル: test_1.go プロジェクト: nttlabs/cli
func main() {
	plugin.Start(new(Test1))
}
コード例 #3
0
func main() {
	plugin.Start(new(TestWithPushShortName))
}
コード例 #4
0
ファイル: echo.go プロジェクト: nttlabs/cli
func main() {
	plugin.Start(new(PluginDemonstratingParams))
}
コード例 #5
0
ファイル: test_with_push.go プロジェクト: nttlabs/cli
func main() {
	plugin.Start(new(TestWithPush))
}
コード例 #6
0
ファイル: my_say.go プロジェクト: nttlabs/cli
func main() {
	plugin.Start(new(MySay))
}
コード例 #7
0
ファイル: test_with_help.go プロジェクト: nttlabs/cli
func main() {
	plugin.Start(new(TestWithHelp))
}
コード例 #8
0
ファイル: input.go プロジェクト: nttlabs/cli
func main() {
	plugin.Start(new(Input))
}
コード例 #9
0
ファイル: interactive.go プロジェクト: nttlabs/cli
func main() {
	plugin.Start(new(Interactive))
}
コード例 #10
0
ファイル: empty_plugin.go プロジェクト: nttlabs/cli
func main() {
	plugin.Start(new(EmptyPlugin))
}
コード例 #11
0
ファイル: call_core_cmd.go プロジェクト: nttlabs/cli
func main() {
	plugin.Start(new(CoreCmd))
}
コード例 #12
0
ファイル: call_cli_cmd.go プロジェクト: nttlabs/cli
func main() {
	plugin.Start(new(CliCmd))
}
コード例 #13
0
ファイル: panics.go プロジェクト: nttlabs/cli
func main() {
	plugin.Start(new(Panics))
}