Files
fm-orchestrator/module_build_service/builder/__init__.py
mprahl 66c3f82160 Format the coding style across the codebase using "black" and manual tweaks
The main benefit of this commit is that the use of double quotes
is now consistent.
2019-04-26 00:32:13 -04:00

9 lines
248 B
Python

import pkg_resources
from module_build_service.builder.base import GenericBuilder
__all__ = [GenericBuilder]
for entrypoint in pkg_resources.iter_entry_points("mbs.builder_backends"):
GenericBuilder.register_backend_class(entrypoint.load())