2024-01-18 13:36:24 -05:00
|
|
|
#include <crow.h>
|
|
|
|
#include <crow/app.h>
|
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
#include "csv.h"
|
2024-01-22 15:12:28 -05:00
|
|
|
#include "isbn-interaction.h"
|
2024-01-18 13:36:24 -05:00
|
|
|
|
|
|
|
std::string print_hello()
|
|
|
|
{
|
2024-01-22 15:12:28 -05:00
|
|
|
return "server is running!";
|
2024-01-18 13:36:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
crow::SimpleApp app;
|
|
|
|
|
|
|
|
CROW_ROUTE(app, "/")([](){
|
|
|
|
return crow::response(print_hello());
|
|
|
|
});
|
|
|
|
|
|
|
|
CROW_ROUTE(app, "/books")([](){
|
|
|
|
return crow::response(get_all_books());
|
|
|
|
});
|
|
|
|
|
|
|
|
app.port(18080).run();
|
|
|
|
|
|
|
|
}
|