KnowledgeCrawler/src/main.cpp

30 lines
748 B
C++
Raw Normal View History

2023-06-08 17:57:19 +01:00
#include <vector>
#include <string>
#include <iostream>
#include <fstream>
#include <memory>
2023-06-09 00:02:11 +01:00
#include "const.hpp"
#include "logging.hpp"
#include "config.hpp"
#include "fs/fs.hpp"
2023-06-08 17:57:19 +01:00
int main(int argc, const char *argv[]) {
2023-06-09 00:02:11 +01:00
init_logging();
2023-06-08 17:57:19 +01:00
2023-06-09 00:02:11 +01:00
BOOST_LOG_TRIVIAL(info) << "================================";
BOOST_LOG_TRIVIAL(info) << " kc";
BOOST_LOG_TRIVIAL(info) << "================================";
BOOST_LOG_TRIVIAL(info) << "starting up....";
2023-06-08 17:57:19 +01:00
2023-06-09 00:02:11 +01:00
auto config = init_config(argc, argv);
2023-06-08 17:57:19 +01:00
2023-06-09 00:02:11 +01:00
if(config)
2023-06-08 17:57:19 +01:00
{
2023-06-09 00:02:11 +01:00
auto env_path = (*config)["path"].as<std::string>();
BOOST_LOG_TRIVIAL(info) << "Loading knowledge base from " << env_path;
auto entries = kc::walk_dir(env_path);
2023-06-08 17:57:19 +01:00
}
}