Util.h 268 B

12345678910111213141516171819202122
  1. #ifndef UTIL_UTIL_H
  2. #define UTIL_UTIL_H
  3. #include <HttpClient.h>
  4. #include <string>
  5. namespace Util {
  6. struct Context
  7. {
  8. public:
  9. std::string path;
  10. Http::HttpClient client;
  11. std::string url;
  12. };
  13. std::string getTimeString();
  14. } // namespace Util
  15. #endif // UTIL_UTIL_H