#include #include /* Commands */ static const command_parser_t command_stats_get = { .action = ACTION_GET, .object_type = OBJECT_TYPE_STATS, .nparams = 0, }; COMMAND_REGISTER(command_stats_get); static const command_parser_t command_stats_list = { .action = ACTION_LIST, .object_type = OBJECT_TYPE_STATS, .nparams = 0, }; COMMAND_REGISTER(command_stats_list);