gh-wh-handler/include/endpoints/update-files.hpp

11 lines
252 B
C++
Raw Normal View History

#ifndef UPDATE_FILES_HPP
#define UPDATE_FILES_HPP
#include <crow/http_request.h>
#include <crow/http_response.h>
#include <nlohmann/json.hpp>
crow::response update_files(const nlohmann::json &, const nlohmann::json &, const crow::request &);
#endif