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