mirror of
https://github.com/Hopiu/lychee.git
synced 2026-03-17 05:00:26 +00:00
8 lines
197 B
Rust
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(())
|
|
}
|