gh-wh-handler/include/endpoints/run-actions.hpp

11 lines
225 B
C++
Raw Permalink Normal View History

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