diff options
| author | 2023-12-24 04:26:00 -0600 | |
|---|---|---|
| committer | 2023-12-24 04:26:00 -0600 | |
| commit | 20d9fc5b5356a1054cb104ba6651b77184abf0db (patch) | |
| tree | 5f115d8051dad73069d3a632a6f2c260cf7efdac /src/cmd-instance.c | |
initial commit
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; +} + |
