aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/scripts/test_ports/vcpkg-ci-rest-rpc/project/main.cpp
blob: 4165c75512611a51fa448b28f5d83610055804a3 (plain)
1
2
3
4
5
6
7
8
9
#include <rest_rpc.hpp>

int main()
{
    rest_rpc::rpc_client client("127.0.0.1", 8080);
	client.connect();
	client.run();
    return 0;
}