This is a Rust implementation of the ClearURL.
```bash wget https://raw.githubusercontent.com/Avimitin/clearurl/master/rules.toml
docker run \ # Bot token -e "TELOXIDETOKEN=BOTTOKEN" \ # Whitelist -e "CLBOTENABLEGROUPS=123456,654321" \ # Rule file -e "CLEARURL_FILE=/usr/lib/bot/rules.toml" \ -v "$(PWD):/usr/lib/bot" \ -d ghcr.io/Avimitin/clearurl-bot:latest ```
```toml
clearurl = "0.5" ```
```rust use clearurl::URLCleaner;
async fn main() { let cleaner = URLCleaner::from_file("./rules.toml").unwrap();
let url = "https://b23.tv/C0lw13z"; cleaner.clear(url).await.unwrap();
asserteq!( url.asstr(), // normal queries will be kept "https://www.bilibili.com/video/BV1GJ411x7h7?p=1" );
println!("Clean URL: {}", url); } ```
```bash wget https://raw.githubusercontent.com/Avimitin/clearurl/master/rules.toml
cargo run --release ```