RedirectResponse.cpp 282 B

12345678910111213
  1. //
  2. // Created by xcbosa on 2023/1/30.
  3. //
  4. #include "RedirectResponse.h"
  5. namespace xc {
  6. namespace utils {
  7. RedirectResponse::RedirectResponse(string location): TextResponseData(302, "") {
  8. this->setHeader("Location", location);
  9. }
  10. } // xc
  11. } // utils