| 713 | } |
| 714 | |
| 715 | void DataStorageController::SendErrorResponse(httplib::Response& res, int status, const nlohmann::json& error) |
| 716 | { |
| 717 | res.status = status; |
| 718 | res.set_content(error.dump(), "application/json"); |
| 719 | } |
| 720 | |
| 721 | DataStorageController::ResolveDataPathResult DataStorageController::ResolveDataPath( |
| 722 | const httplib::Request& req, const std::string& contentType) |
no outgoing calls
no test coverage detected