aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmd-instance.c
blob: 9e346e27efd2d2be35ecb2c254c13aaf2d352190 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
}