We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da0dc8a commit 882e6ebCopy full SHA for 882e6eb
vulnerabilities/pipelines/exporters/__init__.py
@@ -0,0 +1,16 @@
1
+# Copyright (c) nexB Inc. and others. All rights reserved.
2
+# VulnerableCode is a trademark of nexB Inc.
3
+# SPDX-License-Identifier: Apache-2.0
4
+# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
5
+# See https://github.com/aboutcode-org/vulnerablecode for support or download.
6
+# See https://aboutcode.org for more information about nexB OSS projects.
7
+#
8
+
9
+from vulnerabilities.pipelines.exporters import federate_vulnerabilities
10
+from vulnerabilities.utils import create_registry
11
12
+EXPORTERS_REGISTRY = create_registry(
13
+ [
14
+ federate_vulnerabilities.FederatePackageVulnerabilities,
15
+ ]
16
+)
…ters/federate_package_vulnerabilities.py …es/exporters/federate_vulnerabilities.pyvulnerabilities/pipelines/exporters/federate_package_vulnerabilities.py renamed to vulnerabilities/pipelines/exporters/federate_vulnerabilities.py
0 commit comments