diff options
Diffstat (limited to 'src/list_pkgs.cc')
| -rw-r--r-- | src/list_pkgs.cc | 10 |
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; + } +} |
