utils.h 207 B

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