forked from gentoo-utils/gentoo-utils
8 lines
95 B
Rust
8 lines
95 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
#[error("{_}")]
|
|
pub struct Error;
|
|
|
|
fn main() {}
|