blob: e94ede84ef01f1ad291bdb3337655a4ccff19c1d [file] [log] [blame]
/*
* Copyright (C) 2018 CESNET, https://photonics.cesnet.cz/
*
* Written by Jan Kundrát <jan.kundrat@cesnet.cz>
*
*/
#include <docopt.h>
#include <string>
#include "NETCONF_CLI_VERSION.h"
static const char usage[] =
R"(CLI interface to remote NETCONF hosts
Usage:
netconf-cli (-h | --help)
netconf-cli --version
)";
int main(int argc, char* argv[])
{
auto args = docopt::docopt(usage,
{argv + 1, argv + argc},
true,
"netconf-cli " NETCONF_CLI_VERSION,
true);
return 0;
}