mirror of
https://github.com/amtoaer/bili-sync.git
synced 2026-05-18 07:07:35 +08:00
8 lines
136 B
Rust
8 lines
136 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum InnerApiError {
|
|
#[error("Primary key not found: {0}")]
|
|
NotFound(i32),
|
|
}
|