You've already forked AstralRinth
forked from xxxOFFxxx/AstralRinth
9 lines
186 B
Rust
9 lines
186 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
/// An error returned by the API
|
|
#[derive(Serialize, Deserialize)]
|
|
pub struct ApiError<'a> {
|
|
pub error: &'a str,
|
|
pub description: String,
|
|
}
|