aboutsummaryrefslogtreecommitdiff
path: root/src/main.cc
blob: ecce36a3b686d06da4df943d2230a277504faa90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <string>
#include <cstring>
#include <filesystem>
#include <iostream>

#include "cla_parse.hh"
#include "help.hh"
#include "setup_pkgit.hh"

int main(int argc, char *argv[]) {
  setup_pkgit();

  if (!argv[1]) { help(); return 0; }

  cla_parse(argc, argv);

  return 0;
}