Files
memgraph/include/web/client.hpp
2016-09-05 01:39:30 +01:00

14 lines
135 B
C++

#pragma once
#include <string>
namespace web
{
class Client
{
void post(const std::string& url, const std::string& body);
};
}