23 lines
268 B
C++
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
|