16 lines
312 B
C++
16 lines
312 B
C++
#include "./server/server.hpp"
|
|
#include "oatpp/network/Server.hpp"
|
|
#include "wireguard/wgcpp.hpp"
|
|
#include <iostream>
|
|
|
|
int main(int argc, char **argv) {
|
|
oatpp::base::Environment::init();
|
|
|
|
/* Run App */
|
|
Server::run();
|
|
|
|
/* Destroy oatpp Environment */
|
|
oatpp::base::Environment::destroy();
|
|
|
|
return 0;
|
|
}
|