aboutsummaryrefslogtreecommitdiff
path: root/src/bottles.c
blob: 42d62a17f8f3fc767c19427b5759de00d1b4f338 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "bottles.h"

static const struct Command bottles_commands[] = {
    { .name = "info",    .func = bottles_info,    .description = "show information about a bottles script" },
};

static const struct Flag bottles_flags[] = {
    { .name = "help",       .variant = TWO, .returns = 1, .func = bottles_help,  .description = "show this message"},
    { .name = "no-net",     .variant = TWO, .returns = 0, .func = set_no_net,   .description = "run commands without commitment"}
};


COMMAND_GROUP_FUNC(bottles)

COMMAND(bottles, info)
{
    return 0;
}


COMMAND_HELP(bottles, " bottles")