Yassine Bougayez

Results 1 comments of Yassine Bougayez

Hi @vijaysoul, I hope you found an answer to your question. This worked for me: ``` ifstream ifs; ifs.open("example.json"); string str((std::istreambuf_iterator(ifs)), std::istreambuf_iterator()); auto jf = crow::json::load(str); return crow::response(jf); ```