blob: 3c98ba7e39d44e79416f842a3dcc6a48ed35757f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <stdio.h>
#include <stdlib.h>
#include "cla_parse.h"
#include "lua_state.h"
#include "setup_pkgit.h"
#include "vars.h"
int main(int argc, char *argv[]) {
init_vars();
setup_pkgit();
cache_repos();
cla_parse(argc, argv);
free_lua_state();
return 0;
}
|