blob: e94ede84ef01f1ad291bdb3337655a4ccff19c1d [file] [log] [blame]
Jan Kundrátdc2b0722018-03-02 14:13:37 +01001/*
2 * Copyright (C) 2018 CESNET, https://photonics.cesnet.cz/
3 *
4 * Written by Jan Kundrát <jan.kundrat@cesnet.cz>
5 *
6*/
7
8#include <docopt.h>
9#include <string>
10#include "NETCONF_CLI_VERSION.h"
11
12static const char usage[] =
13R"(CLI interface to remote NETCONF hosts
14
15Usage:
16 netconf-cli (-h | --help)
17 netconf-cli --version
18)";
19
20int main(int argc, char* argv[])
21{
22 auto args = docopt::docopt(usage,
23 {argv + 1, argv + argc},
24 true,
25 "netconf-cli " NETCONF_CLI_VERSION,
26 true);
27 return 0;
28}