Initializing the Spire Linux Agent using the SDK
In this example we will be initializing the SDK object to communicate with the Spire Linux Agent.
Retrieve the source code
- C
- Python
#include "SdkAPI.h"
apiClient_t *client;
client = apiClient_create();
/* Do Work */
apiClient_free(client);
from oort_sdk_client import SdkApi
agent = SdkApi()