adblock_list_compiler/
lib.rs

1mod cli;
2mod cli_run;
3mod compiler;
4mod config;
5mod fetch;
6mod output;
7
8pub fn hello() {
9    println!("Hello, world!");
10}
11
12pub async fn run() -> u8 {
13    let cli_args = cli::Cli::from_args();
14    let cmd = cli_args.into_cli_run();
15
16    cmd.run().await
17}