20 lines
200 B
C++
20 lines
200 B
C++
#include "Database.hpp"
|
|
#include "Network.hpp"
|
|
#include "Config.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
int main( int carg, char* varg[] ){
|
|
|
|
Config conf("config.txt");
|
|
|
|
Database db;
|
|
|
|
Network net;
|
|
|
|
|
|
|
|
net.run();
|
|
|
|
}
|