aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/scripts/test_ports/vcpkg-ci-rest-rpc/project/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/scripts/test_ports/vcpkg-ci-rest-rpc/project/main.cpp')
-rw-r--r--vcpkg/scripts/test_ports/vcpkg-ci-rest-rpc/project/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/vcpkg/scripts/test_ports/vcpkg-ci-rest-rpc/project/main.cpp b/vcpkg/scripts/test_ports/vcpkg-ci-rest-rpc/project/main.cpp
new file mode 100644
index 0000000..4165c75
--- /dev/null
+++ b/vcpkg/scripts/test_ports/vcpkg-ci-rest-rpc/project/main.cpp
@@ -0,0 +1,9 @@
+#include <rest_rpc.hpp>
+
+int main()
+{
+ rest_rpc::rpc_client client("127.0.0.1", 8080);
+ client.connect();
+ client.run();
+ return 0;
+}