Initial commit

This commit is contained in:
2017-04-28 18:45:26 +02:00
commit 37fe983738
23 changed files with 1319 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef UTIL_H
#define UTIL_H
#include <string>
#include "httpClient.h"
struct context
{
public:
std::string path;
httpClient client;
std::string url;
};
std::string getTimeString();
#endif // UTIL_H