age-plugin: Fix bugs in README

This commit is contained in:
Jack Grigg 2024-01-08 02:54:50 +00:00
parent e9d474a357
commit a26b7eaf73

View file

@ -120,7 +120,7 @@ impl IdentityPluginV1 for IdentityPlugin {
index: usize,
plugin_name: &str,
bytes: &[u8]
) -> Result<(), identityw::Error> {
) -> Result<(), identity::Error> {
todo!()
}
@ -149,8 +149,8 @@ fn main() -> io::Result<()> {
// The plugin was started by an age client; run the state machine.
run_state_machine(
&state_machine,
|| RecipientPlugin,
|| IdentityPlugin,
Some(|| RecipientPlugin),
Some(|| IdentityPlugin),
)?;
return Ok(());
}