5 lines
84 B
Rust
5 lines
84 B
Rust
use anyhow::{bail, Result};
|
|
|
|
fn main() -> Result<()> {
|
|
bail!("{} not found");
|
|
}
|