mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-03 04:42:46 +00:00
8 lines
126 B
Rust
8 lines
126 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
#[error(transparent)]
|
|
pub struct Error(#[source] anyhow::Error);
|
|
|
|
fn main() {}
|