blob: f02a680690b4ed5e526e70137194b991cbd2c600 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <math.h>
#include <hicn/ctrl/command.h>
/* Commands */
static const command_parser_t command_stats_list = {
.action = ACTION_LIST,
.object_type = OBJECT_TYPE_STATS,
.nparams = 0,
};
COMMAND_REGISTER(command_stats_list);
static const command_parser_t command_face_stats_list = {
.action = ACTION_LIST,
.object_type = OBJECT_TYPE_FACE_STATS,
.nparams = 0,
};
COMMAND_REGISTER(command_face_stats_list);
|