aboutsummaryrefslogtreecommitdiff
path: root/repos/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'repos/__init__.py')
-rw-r--r--repos/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/repos/__init__.py b/repos/__init__.py
index 1dea3a1..fc81260 100644
--- a/repos/__init__.py
+++ b/repos/__init__.py
@@ -1,6 +1,6 @@
from typing import Mapping, List
-from . import alpine_linux
+from . import alpine_linux, arch_linux
from .base import Repository
__all__ = [
@@ -15,6 +15,7 @@ def repos_from(module):
all_repos: List[Repository] = [
*repos_from(alpine_linux),
+ *repos_from(arch_linux),
]
def get_versions(package: str) -> Mapping[str, Mapping[str, str]]: