There was an error while loading. Please reload this page.
1 parent 8c69661 commit 1ed1ca2Copy full SHA for 1ed1ca2
3 files changed
vulnerabilities/importers/__init__.py
@@ -20,8 +20,9 @@
20
# VulnerableCode is a free software code scanning tool from nexB Inc. and others.
21
# Visit https://github.com/nexB/vulnerablecode/ for support and download.
22
from vulnerabilities.importers import alpine_linux
23
+from vulnerabilities.importers import github
24
from vulnerabilities.importers import nginx
25
-IMPORTERS_REGISTRY = [nginx.NginxImporter, alpine_linux.AlpineImporter]
26
+IMPORTERS_REGISTRY = [nginx.NginxImporter, alpine_linux.AlpineImporter, github.GitHubAPIImporter]
27
28
IMPORTERS_REGISTRY = {x.qualified_name: x for x in IMPORTERS_REGISTRY}
0 commit comments