mirror of
https://pagure.io/fm-orchestrator.git
synced 2026-02-08 07:43:20 +08:00
This also removes the outdated comments around authorship of each file. If there is still interest in this information, one can just look at the git history.
11 lines
305 B
Python
11 lines
305 B
Python
# -*- coding: utf-8 -*-
|
|
# SPDX-License-Identifier: MIT
|
|
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())
|