Files
path/to/file 0655186b08 Dev (#1)
Initial dev push
2020-05-18 21:29:27 +10:00

24 lines
363 B
C++

#include <iostream>
#include "sealighter_controller.h"
#include "sealighter_errors.h"
/*
Main entrypoint
*/
int main
(
int argc,
char* argv[]
)
{
int status = 0;
if (2 != argc) {
printf("usage: %s <config_file>\n", argv[0]);
return SEALIGHTER_ERROR_NOCONFIG;
}
status = run_sealighter(argv[1]);
return status;
}