#include "commands.h" #include "src/command.h" #include unsigned cmd_instance_add(struct l2_context_node *ctx, char **args) { printf("add command yay\n"); return CMD_RESULT_SUCCESS; } unsigned cmd_instance_remove(struct l2_context_node *ctx, char **args) { return CMD_RESULT_SUCCESS; } unsigned cmd_instance_list(struct l2_context_node *ctx, char **args) { return CMD_RESULT_SUCCESS; } unsigned cmd_instance_rename(struct l2_context_node *ctx, char **args) { return CMD_RESULT_SUCCESS; }