main.cpp 356 B

12345678910111213141516
  1. #include <spdlog/spdlog.h>
  2. #include "smartbotic/common.hpp"
  3. int main(int argc, char* argv[]) {
  4. smartbotic::common::Initialize("smartbotic-server");
  5. spdlog::info("SmartBotic Web Server starting...");
  6. // TODO: Implement web server
  7. spdlog::info("SmartBotic Web Server shutting down");
  8. smartbotic::common::Shutdown();
  9. return 0;
  10. }