diff options
Diffstat (limited to 'src/cmd-instance.c')
| -rw-r--r-- | src/cmd-instance.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/cmd-instance.c b/src/cmd-instance.c new file mode 100644 index 0000000..9e346e2 --- /dev/null +++ b/src/cmd-instance.c @@ -0,0 +1,25 @@ +#include "commands.h" +#include "src/command.h" +#include <stdio.h> + +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; +} + |
