/** * @file routes.cpp */ #include "api/routes.hpp" #include namespace app::api { HttpResponse health_check() { return HttpResponse{ 200, R"({"status":"ok","app":"C++ Backend"})", "application/json" }; } } // namespace app::api