utils.h 338 B

123456789101112131415161718
  1. //
  2. // Created by xcbosa on 2023/1/28.
  3. //
  4. #pragma once
  5. #include "RequestData.h"
  6. #include "ResponseData.h"
  7. #include "TextResponseData.h"
  8. #include "FileResponseData.h"
  9. #include "BinaryResponseData.h"
  10. using namespace std;
  11. namespace xc::utils {
  12. string contentsOfTextFile(string filePath);
  13. string mimeTypeOfFile(string filePath);
  14. }