Files
localsend/packages/core/src/http/mod.rs
T
2026-07-13 23:23:51 +02:00

15 lines
242 B
Rust

use thiserror::Error;
pub mod client;
pub mod dto;
pub mod dto_v2;
pub mod server;
pub mod state;
#[derive(Debug, Error)]
#[error("{status};{message:?}")]
pub struct StatusCodeError {
pub status: u16,
pub message: Option<String>,
}