mirror of
https://github.com/tribufu/sdk-cpp
synced 2025-06-15 22:24:21 +00:00
15 lines
296 B
C++
15 lines
296 B
C++
// Copyright (c) Tribufu. All Rights Reserved.
|
|
|
|
#include <iostream>
|
|
|
|
#include <tribufu/client.h>
|
|
|
|
using namespace tribufu;
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
auto client = new TribufuClient(0, "client_secret");
|
|
std::cout << "client_id: " << client->get_id() << std::endl;
|
|
return 0;
|
|
}
|