2023-03-26 19:15:17 +08:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "master.h"
|
2023-03-27 16:10:41 +08:00
|
|
|
#include "paras.hpp"
|
2023-03-26 19:15:17 +08:00
|
|
|
|
2023-03-27 16:10:41 +08:00
|
|
|
int main(int argc, char* argv[]) {
|
2023-03-27 15:44:39 +08:00
|
|
|
|
2023-03-27 16:10:41 +08:00
|
|
|
paras::parse(argc, argv);
|
|
|
|
opt->print_paras();
|
2023-03-27 15:44:39 +08:00
|
|
|
|
2023-03-26 19:15:17 +08:00
|
|
|
return 0;
|
|
|
|
}
|