forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
panics.go
45 lines (38 loc) · 798 Bytes
/
panics.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
* 1. Setup the server so cf can call it under main.
e.g. `cf my-plugin` creates the callable server. now we can call the Run command
* 2. Implement Run that is the actual code of the plugin!
* 3. Return an error
**/
package main
import (
"os"
"github.com/cloudfoundry/cli/plugin"
)
type Panics struct {
}
func (c *Panics) Run(cliConnection plugin.CliConnection, args []string) {
if args[0] == "panic" {
panic("OMG")
} else if args[0] == "exit1" {
os.Exit(1)
}
}
func (c *Panics) GetMetadata() plugin.PluginMetadata {
return plugin.PluginMetadata{
Name: "Panics",
Commands: []plugin.Command{
{
Name: "panic",
HelpText: "omg panic",
},
{
Name: "exit1",
HelpText: "omg exit1",
},
},
}
}
func main() {
plugin.Start(new(Panics))
}