mirror of
https://github.com/tribufu/sdk-cpp
synced 2025-06-15 11:04:19 +00:00
13 lines
262 B
C++
13 lines
262 B
C++
// 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;
|
|
}
|