aboutsummaryrefslogtreecommitdiff
path: root/src/list_pkgs.cc
blob: 487a75cfea4f4727890d4b318ac1e3b2d3a46760 (plain)
1
2
3
4
5
6
7
8
9
10
#include <iostream>

#include "list_pkgs.hh"
#include "vars.hh"

void list_pkgs() {
  for (auto repo : repos) {
    std::cout << repo.first << std::endl;
  }
}