Change how system.rs imports blocks to avoid merge conflicts#39
Change how system.rs imports blocks to avoid merge conflicts#39imunproductive wants to merge 4 commits intoartob:masterfrom
system.rs imports blocks to avoid merge conflicts#39Conversation
|
@race-of-sloths invite |
|
@imunproductive Thank you for your contribution! Your pull request is now a part of the Race of Sloths! Current status: staleThis pull request was removed from the race, but you can include it again with What is the Race of SlothsRace of Sloths is a friendly competition where you can participate in challenges and compete with other open-source contributors within your normal workflow For contributors:
For maintainers:
Feel free to check our website for additional details! Bot commands
|
|
@race-of-sloths score 5 |
|
Important Protoflow has been discontinued and archived in favor of its successors Async-Flow and Flows.rs, which represent the future of flow-based programming in Rust and offer a substantially better developer experience as well as simply higher development velocity. |
This PR fixes potential merge conflicts in other PR's by removing including blocks by name in
system.rsand usingblockmod that I implemented.Just doing
would also suffice, but I don't like just including everything.
This seems like a good solution, considering that we will be refactoring the way we include modules soon either way.