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

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

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