aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
blob: 534e45c61786ef900c315b7e5e6522dde3bf567b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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();
    cla_parse(argc, argv);
    free_lua_state();
    return 0;
}