alist_rs 0.0.3

A Rust client library for interacting with the Alist API.
Documentation
1
2
3
4
5
6
7
8
9
10
use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
    #[error("request error: {0}")]
    RequestError(#[from] reqwest::Error),

    #[error("message: {0}")]
    Message(String),
}