| 12345678910111213141516171819202122 |
- #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
|