Tests added

This commit is contained in:
2018-09-05 17:34:41 +02:00
parent 0a3668032d
commit 1b6a782d04
5 changed files with 58 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef C0DING_LIBRARY_H
#define C0DING_LIBRARY_H
#define VERSION "1.0.0";
#include <string>
#include "network/network.h"
namespace c0ding {
void version();
}
int main(int argc, char** argv) {
c0ding::network::test();
}
#endif