Initial submit

This commit is contained in:
Torsten Schulz
2017-07-18 23:51:56 +02:00
parent 071d70ecf6
commit 26ab29859d
13 changed files with 535 additions and 68 deletions

View File

@@ -1,9 +1,10 @@
#include <iostream>
#include "config.h"
#include "server.h"
using namespace std;
int main(int argc, char *argv[])
int main(int, char **)
{
cout << "Hello World!" << endl;
Yc::Lib::Config *config = new Yc::Lib::Config();
Yc::Lib::Server server(config);
server.run();
return 0;
}