aboutsummaryrefslogtreecommitdiffstats
path: root/hicn-light/src/hicn/config/command_stats.c
blob: 70f74fd8cefe341b3698c731b2ab733d1415132b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <math.h>
#include "command.h"

/* Commands */

static const command_parser_t command_stats_get = {
    .action = ACTION_GET,
    .object = OBJECT_STATS,
    .nparams = 0,
};
COMMAND_REGISTER(command_stats_get);

static const command_parser_t command_stats_list = {
    .action = ACTION_LIST,
    .object = OBJECT_STATS,
    .nparams = 0,
};
COMMAND_REGISTER(command_stats_list);