mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-29 03:34:26 +08:00
10 lines
140 B
C++
10 lines
140 B
C++
#include <rest_rpc.hpp>
|
|
|
|
int main()
|
|
{
|
|
rest_rpc::rpc_client client("127.0.0.1", 8080);
|
|
client.connect();
|
|
client.run();
|
|
return 0;
|
|
}
|