aboutsummaryrefslogtreecommitdiffstats
path: root/hicn-light/src/hicn/config/command_strategy.c
diff options
context:
space:
mode:
Diffstat (limited to 'hicn-light/src/hicn/config/command_strategy.c')
-rw-r--r--hicn-light/src/hicn/config/command_strategy.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/hicn-light/src/hicn/config/command_strategy.c b/hicn-light/src/hicn/config/command_strategy.c
new file mode 100644
index 000000000..e3a11959c
--- /dev/null
+++ b/hicn-light/src/hicn/config/command_strategy.c
@@ -0,0 +1,12 @@
+#include "command.h"
+
+/* Parameters */
+
+/* Commands */
+
+static const command_parser_t command_strategy_list = {
+ .action = ACTION_LIST,
+ .object = OBJECT_STRATEGY,
+ .nparams = 0,
+};
+COMMAND_REGISTER(command_strategy_list);