anthracite/backends/backend.cpp

7 lines
112 B
C++
Raw Normal View History

2023-09-07 23:33:22 +00:00
#include "../http.cpp"
class backend {
public:
virtual http_response handle_request(http_request req) {};
};