mirror of
https://github.com/localsend/localsend.git
synced 2026-06-23 04:10:07 +00:00
14 lines
225 B
Rust
14 lines
225 B
Rust
use thiserror::Error;
|
|
|
|
pub mod client;
|
|
pub mod dto;
|
|
pub mod server;
|
|
pub mod state;
|
|
|
|
#[derive(Debug, Error)]
|
|
#[error("{status};{message:?}")]
|
|
pub(crate) struct StatusCodeError {
|
|
status: u16,
|
|
message: Option<String>,
|
|
}
|