So I need to build my own APT specific version of https://github.com/pulp/pulpcore/blob/main/pulpcore/plugin/repo_version_utils.py#L16 within pulp_deb.
This method makes use of the helper function here: https://github.com/pulp/pulpcore/blob/main/pulpcore/app/util.py#L182
This helper function is not exposed via the plugin API.
Do you recommend I just duplicate this helper function in pulp_deb, or is there some best practice way of handling this?
My understanding is I should not import anything outside of from pulpcore.plugin
from pulpcore into pulp_deb, so from pulpcore.app.util import batch_qs
is a no-go?