ai-dev-template / cpp /src /api /routes.cpp
Jordandevlog's picture
Upload cpp/src/api/routes.cpp
ac8bc88 verified
Raw
History Blame Contribute Delete
275 Bytes
/**
* @file routes.cpp
*/
#include "api/routes.hpp"
#include <format>
namespace app::api {
HttpResponse health_check() {
return HttpResponse{
200,
R"({"status":"ok","app":"C++ Backend"})",
"application/json"
};
}
} // namespace app::api