adblock-list-compiler 0.0.8

CLI tool to compile multiple adblock list sources into a single file
Documentation
1
2
3
4
5
6
7
8
9
pub mod compile;
pub mod config_check;

use async_trait::async_trait;

#[async_trait]
pub trait CliRun {
    async fn run(&self) -> u8;
}