lychee/examples/simple/simple.rs
2021-04-30 13:33:24 +02:00

8 lines
197 B
Rust

use lychee_lib::Result;
#[tokio::main]
async fn main() -> Result<()> {
let response = lychee_lib::check("https://github.com/lycheeverse/lychee").await?;
dbg!("{}", response);
Ok(())
}