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
Imagine doing this:
let context = Context::new(); // Context shared by plugins let runtime = Runtime::new(context);
Then on guest:
#[plugy::plugin] trait Greeter { fn greet(&self, ctx:Context) -> String; }
Context can expose methods like fetch etc which would have external access for guests.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Imagine doing this:
Then on guest:
Context can expose methods like fetch etc which would have external access for guests.
The text was updated successfully, but these errors were encountered: