RedirectResponse.h 308 B

12345678910111213141516171819
  1. //
  2. // Created by xcbosa on 2023/1/30.
  3. //
  4. #pragma once
  5. #include "utils-private.h"
  6. #include "TextResponseData.h"
  7. namespace xc {
  8. namespace utils {
  9. class RedirectResponse: public TextResponseData {
  10. public:
  11. RedirectResponse(string location);
  12. };
  13. } // xc
  14. } // utils