11 lines
157 B
C++
11 lines
157 B
C++
|
#include <crow/app.h>
|
||
|
#include <nlohmann/json.hpp>
|
||
|
|
||
|
class Routes {
|
||
|
public:
|
||
|
Routes(nlohmann::json);
|
||
|
|
||
|
private:
|
||
|
crow::SimpleApp app;
|
||
|
};
|