aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/scripts/test_ports/vcpkg-ci-yandex-disk-cpp-client/project/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/scripts/test_ports/vcpkg-ci-yandex-disk-cpp-client/project/main.cpp')
-rw-r--r--vcpkg/scripts/test_ports/vcpkg-ci-yandex-disk-cpp-client/project/main.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/vcpkg/scripts/test_ports/vcpkg-ci-yandex-disk-cpp-client/project/main.cpp b/vcpkg/scripts/test_ports/vcpkg-ci-yandex-disk-cpp-client/project/main.cpp
new file mode 100644
index 0000000..0b2f175
--- /dev/null
+++ b/vcpkg/scripts/test_ports/vcpkg-ci-yandex-disk-cpp-client/project/main.cpp
@@ -0,0 +1,7 @@
+#include <YandexDiskClient.h>
+int main()
+{
+ YandexDiskClient yandex("TOKEN");
+ auto quota = yandex.getQuotaInfo();
+ return 0;
+}