alist_rs 0.0.1

A Rust client library for interacting with the Alist API.
Documentation
1
2
3
4
5
6
7
8
use serde::Deserialize;

#[derive(Debug, Deserialize)]
pub struct Response<T> {
    pub code: u32,
    pub message: String,
    pub data: Option<T>,
}