From 60623df00311da02af3be93347cbff4cb85919b3 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sat, 5 Nov 2022 23:06:15 +0100 Subject: [PATCH] with rust do as well --- plugins/rust/main.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/rust/main.go b/plugins/rust/main.go index 7839670..3c910b4 100644 --- a/plugins/rust/main.go +++ b/plugins/rust/main.go @@ -9,6 +9,11 @@ import ( type GoCliPlugin struct{} +// Do implements register.Plugin +func (*GoCliPlugin) Do(ctx context.Context, commandName string, args map[string]string) error { + panic("unimplemented") +} + func (*GoCliPlugin) About(ctx context.Context) (*register.About, error) { return ®ister.About{ Name: "rust",