Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/contrib/frontends/cpp/nntpchan-daemon/tool.cpp

19 lines
318 B
C++
Raw Normal View History

2016-10-15 21:37:59 +05:00
#include "base64.hpp"
#include "crypto.hpp"
#include <string>
#include <iostream>
static void print_help(const std::string & exename)
{
std::cout << "usage: " << exename << " [help|passwd|genconf]" << std::endl;
}
int main(int argc, char * argv[])
{
if(argc == 1) {
print_help(argv[0]);
return 1;
}
}