-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Add examples for package manager and spreadsheet #13
Conversation
The examples help me to understand how to define the API. Later, they can be used for tests and for documentation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I left a couple of inline comments.
For the package API, I wonder if requiring a structure of dependencies to insert a package could get you into a stalemate; maybe inserting packages and then inserting dependencies iteratively would work better in a situation where you'd parse package manifests? That's a genuine question. It could also be the case that direct, first-order dependencies can always be determined and inserted in one go.
@DivineDominion Thank you for the code review. I made a few changes. Can you please take a look at it again? |
@DivineDominion Thank you for the review again. I will merge the branch because I want to implement the methods required for these examples. |
The examples help me to understand how to define the API. Later, they can be used for tests and for documentation.