apkeep 0.14.0

A command-line tool for downloading APK files from various sources
1
2
3
4
5
6
7
8
9
10
use std::fs::File;
use std::io::Write;

include!("src/cli.rs");

fn main() {
    let mut file = File::create("USAGE").unwrap();
    let help = app().render_help();
    file.write_all(help.to_string().as_bytes()).unwrap();
}