Does anybody do class based development and deployment with flow code or is this some sort of an anti pattern in Prefect?
For example, I would have a common parent flow that retrieves data to pass to different types of subflows.
• Is it better to inherit that parent flow and deploy with each of the subflows under the same deployment space?
◦ parent_flow/deployment_1, subflow/deployment_1, parent_flow/deployment_2 and subflow/deployment_2
• Or is it better to make the parent it's own separate deployment.
◦ parent_flow/deployment_x, subflow/deployment_1, subflow/deployment_2