aboutsummaryrefslogtreecommitdiff
path: root/src/list_pkgs.cc
diff options
context:
space:
mode:
authordacctal <dacctalyt@gmail.com>2026-04-03 14:56:05 +0000
committerdacctal <dacctalyt@gmail.com>2026-04-03 14:56:05 +0000
commited78991edc4755c0276dcb4eb454b43fa38296fc (patch)
tree460da5399e34e1dce7a293cb22578da15977d895 /src/list_pkgs.cc
parent2a6b92ed130ade1ea7542ee210e6957427a0aa81 (diff)
countless changes
Diffstat (limited to 'src/list_pkgs.cc')
-rw-r--r--src/list_pkgs.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/list_pkgs.cc b/src/list_pkgs.cc
new file mode 100644
index 0000000..487a75c
--- /dev/null
+++ b/src/list_pkgs.cc
@@ -0,0 +1,10 @@
+#include <iostream>
+
+#include "list_pkgs.hh"
+#include "vars.hh"
+
+void list_pkgs() {
+ for (auto repo : repos) {
+ std::cout << repo.first << std::endl;
+ }
+}