mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralgw.git
synced 2025-10-30 18:28:03 +00:00
18 lines
337 B
C++
18 lines
337 B
C++
#include <iostream>
|
|
|
|
#include <spdlog/spdlog.h>
|
|
#include <yaml-cpp/yaml.h>
|
|
#include "oatpp/network/Server.hpp"
|
|
#include "oatpp-websocket/AsyncWebSocket.hpp"
|
|
|
|
int main() {
|
|
|
|
oatpp::base::Environment::init();
|
|
|
|
std::cout << "Hello, World!" << std::endl;
|
|
|
|
spdlog::warn("Easy padding in numbers like {:08d}", 12);
|
|
|
|
return 0;
|
|
}
|