#include "ResourceNode.hpp" namespace httpsserver { ResourceNode::ResourceNode(const std::string path, const std::string method, const HTTPSCallbackFunction * callback, const std::string tag): HTTPNode(path, HANDLER_CALLBACK, tag), _method(std::move(method)), _callback(callback) { } ResourceNode::~ResourceNode() { } } /* namespace httpsserver */