char/plugins/gocli/main.go

47 lines
896 B
Go
Raw Normal View History

2022-11-01 14:26:54 +01:00
package main
import (
"context"
"log"
"git.front.kjuulh.io/kjuulh/char/pkg/register"
)
2022-11-02 16:31:12 +01:00
type GoCliPlugin struct{}
2022-11-01 14:26:54 +01:00
2022-11-05 23:05:41 +01:00
// Do implements register.Plugin
func (*GoCliPlugin) Do(ctx context.Context, commandName string, args map[string]string) error {
log.Print("hit do")
return nil
}
2022-11-01 21:15:32 +01:00
func (*GoCliPlugin) About(ctx context.Context) (*register.About, error) {
return &register.About{
Name: "gocli",
Version: "v0.0.1",
About: "golang cli provides a set of actions and presets supporting golang development",
2022-11-02 22:10:15 +01:00
Vars: []string{
"dev.mode",
},
Commands: []*register.AboutCommand{
{
Name: "local_up",
Args: []string{"fish"},
Required: []string{"fish"},
},
},
2022-11-01 21:15:32 +01:00
}, nil
2022-11-01 14:26:54 +01:00
}
var _ register.Plugin = &GoCliPlugin{}
func main() {
if err := register.
NewPluginBuilder(
&GoCliPlugin{},
).
Serve(context.Background()); err != nil {
log.Fatal(err)
}
}