1
0

util.h 208 B

123456789101112131415161718
  1. #ifndef UTIL_H
  2. #define UTIL_H
  3. #include <string>
  4. #include "httpClient.h"
  5. struct context
  6. {
  7. public:
  8. std::string path;
  9. httpClient client;
  10. std::string url;
  11. };
  12. std::string getTimeString();
  13. #endif // UTIL_H