gh-wh-handler/include/routes.hpp

16 lines
204 B
C++
Raw Normal View History

#ifndef ROUTES_HPP
#define ROUTES_HPP
#include <crow/app.h>
#include <nlohmann/json.hpp>
class Routes {
public:
Routes(nlohmann::json);
private:
crow::SimpleApp app;
};
#endif