2 #ifndef NAF_FUNCTIONS_FUNCTIONS_MANAGER
3 #define NAF_FUNCTIONS_FUNCTIONS_MANAGER
9 #include "functions/function.h"
10 #include "http/methods.h"
17 class FunctionsManager;
25 using FunctionsMap = std::map<std::string, Function::Ptr>;
29 FunctionsMap& get_functions()
31 auto& var = functions_;
35 Function::Ptr AddFunction_(std::string endpoint, HTTP::EnumMethods method);
38 FunctionsMap functions_;
Definition: functions_manager.h:23