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