Set custom plugin name for builtins

This commit is contained in:
Chris Roberts 2021-07-26 14:09:55 -07:00 committed by Paul Hinze
parent 2511a848d6
commit 8d52d9311e
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0
2 changed files with 2 additions and 0 deletions

View File

@ -15,4 +15,5 @@ var CommandOptions = []sdk.Option{
&command.Command{},
&host.AlwaysTrueHost{},
),
sdk.WithName("myplugin"),
}

View File

@ -8,4 +8,5 @@ var CommandOptions = []sdk.Option{
sdk.WithComponents(
&Command{},
),
sdk.WithName("otherplugin"),
}