lychee/examples/simple/simple.rs

9 lines
197 B
Rust
Raw Normal View History

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