forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
my_say.go
44 lines (36 loc) · 824 Bytes
/
my_say.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
/**
* 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 (
"fmt"
"strings"
"github.com/cloudfoundry/cli/plugin"
)
type MySay struct {
}
func (c *MySay) Run(cliConnection plugin.CliConnection, args []string) {
if args[0] == "my-say" {
if len(args) == 3 && args[2] == "--loud" {
fmt.Println(strings.ToUpper(args[1]))
}
fmt.Println(args[1])
}
}
func (c *MySay) GetMetadata() plugin.PluginMetadata {
return plugin.PluginMetadata{
Name: "MySay",
Commands: []plugin.Command{
{
Name: "my-say",
HelpText: "Plugin to say things from the cli",
},
},
}
}
func main() {
plugin.Start(new(MySay))
}