2024-07-19 02:50:15 +00:00
|
|
|
#ifndef ROUTES_HPP
|
|
|
|
#define ROUTES_HPP
|
|
|
|
|
2024-07-15 21:07:12 +00:00
|
|
|
#include <crow/app.h>
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
|
|
|
class Routes {
|
|
|
|
public:
|
|
|
|
Routes(nlohmann::json);
|
|
|
|
|
|
|
|
private:
|
|
|
|
crow::SimpleApp app;
|
|
|
|
};
|
2024-07-19 02:50:15 +00:00
|
|
|
|
|
|
|
#endif
|