mirror of
https://github.com/Hopiu/lychee.git
synced 2026-03-30 03:10:25 +00:00
9 lines
197 B
Rust
9 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(())
|
||
|
|
}
|