1
0

HttpMiddleware.h 272 B

12345678910111213141516
  1. #ifndef HV_HTTP_MIDDLEWARE_H_
  2. #define HV_HTTP_MIDDLEWARE_H_
  3. #include "hexport.h"
  4. #include "HttpContext.h"
  5. BEGIN_NAMESPACE_HV
  6. class HttpMiddleware {
  7. public:
  8. static int CORS(HttpRequest* req, HttpResponse* resp);
  9. };
  10. END_NAMESPACE_HV
  11. #endif // HV_HTTP_MIDDLEWARE_H_