Providers
Instantiate the Vertices library and configure the provider.
Create
/// Initialize Vertices SDK
/// \param config Pass the configuration such as providers and user-defined event handler
/// \return
ret_code_t
vertices_new(vertex_t *config);Parameters
typedef struct
{
provider_info_t *provider;
ret_code_t (*vertices_evt_handler)(vtc_evt_t *evt);
} vertex_t;
typedef struct
{
char *url;
short port;
char *header;
const char *cert_pem;
} provider_info_t;