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 first code block in the docs here,
#[derive(Serialize, Deserialize, Clone, Debug)] pub struct SomeExternalInput { title: String, content: String, } pub fn add_book(input: SomeExternalInput) -> ExternResult<EntryHash> { unimplemented!(); } pub fn get_book(hash: String) -> ExternResult<Book> { unimplemented() }
provides SomeExternalInput whereas the developer exercises repo here provides Book which we are told to implement:
SomeExternalInput
Book
entry_defs![Book::entry_def()]; #[hdk_entry(id = "book")] pub struct Book { title: String, content: String, }
The text was updated successfully, but these errors were encountered:
Fix issue 49
428581f
holochain-gym#49 Note: This is strictly to bring the file into line with the docs (also see holochain-gym/holochain-gym.github.io#50). The functionality has not been tested.
PR holochain-gym/developer-exercises#50
Sorry, something went wrong.
No branches or pull requests
The first code block in the docs here,
provides
SomeExternalInput
whereas the developer exercises repo here providesBook
which we are told to implement:The text was updated successfully, but these errors were encountered: