aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmd-version.c
blob: 873108aaf9f8f8401410dfe8f2e5104813949851 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "command.h"
#include "commands.h"
#include "digest/digest.h"

#include <stdio.h>

unsigned cmd_version_list_remote(struct l2_context_node *ctx, char **args)
{
  return CMD_RESULT_SUCCESS;
}

unsigned cmd_version_list_local(struct l2_context_node *ctx, char **args)
{
  return CMD_RESULT_SUCCESS;
}

unsigned cmd_version_install(struct l2_context_node *ctx, char **args)
{
  return CMD_RESULT_SUCCESS;
}