We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The worker sdk needs to manually provider the plugin details they wish to apply to their handlers. This leads to typos
spacectl client generate
GeneratePlugins()
Plugins
driver=opa; name=is-admin
OpaIsAdmin()
PluginDetails
PluginImpl
nil
plugins.go
If you want this feature to be implemented, give it a thumbs up reaction, so that we can determine which features are important to you. 👍
The text was updated successfully, but these errors were encountered:
shubham4443
No branches or pull requests
The problem faced currently?
The worker sdk needs to manually provider the plugin details they wish to apply to their handlers. This leads to typos
How can we solve it?
spacectl client generate
command will fetch the list of plugins from SC (Ref: [Feature] Add endpoint to return a list of available plugins. #1689)GeneratePlugins()
GeneratePlugins()
will be an exposed struct namedPlugins
with a member function for each plugin registered in SC.driver=opa; name=is-admin
then name of function will beOpaIsAdmin()
PluginDetails
which implements aPluginImpl
interface. This interface will have 3 methods:nil
for now)plugins.go
The text was updated successfully, but these errors were encountered: