2020-03-18 17:24:33 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include "../include/apiClient.h"
|
|
|
|
|
#include "../include/list.h"
|
|
|
|
|
#include "../external/cJSON.h"
|
|
|
|
|
#include "../include/keyValuePair.h"
|
2020-06-20 09:41:15 +08:00
|
|
|
#include "../include/binary.h"
|
2020-03-18 17:24:33 +08:00
|
|
|
#include "../model/v1_api_group.h"
|
|
|
|
|
|
2021-09-05 12:12:19 -03:00
|
|
|
#undef stdin
|
|
|
|
|
#undef stderr
|
|
|
|
|
#undef stdout
|
|
|
|
|
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
// get information of a group
|
|
|
|
|
//
|
|
|
|
|
v1_api_group_t*
|
|
|
|
|
FlowcontrolApiserverAPI_getAPIGroup(apiClient_t *apiClient);
|
|
|
|
|
|
|
|
|
|
|