2
0
mirror of https://github.com/tribufu/sdk-cpp synced 2025-06-18 18:24:18 +00:00

Create c++ project

This commit is contained in:
Guilherme Werner
2023-12-01 21:19:37 -03:00
parent 482662b7bd
commit 64c60a294c
24 changed files with 9882 additions and 32 deletions

12
examples/main.cpp Normal file

@ -0,0 +1,12 @@
// Copyright (c) Tribufu. All Rights Reserved.
#include <iostream>
#include <tribufu/sdk.h>
int main(int argc, char **argv)
{
auto client = TribufuClient(0, "client_secret");
std::cout << "client_id: " << client.get_id() << std::endl;
return 0;
}