Files
2020-05-01 10:21:46 +02:00

23 lines
268 B
C++

#ifndef UTIL_UTIL_H
#define UTIL_UTIL_H
#include <HttpClient.h>
#include <string>
namespace Util {
struct Context
{
public:
std::string path;
Http::HttpClient client;
std::string url;
};
std::string getTimeString();
} // namespace Util
#endif // UTIL_UTIL_H