marzban_api 0.2.12

A simple async client which abstracts/simplifies the interactions with the Marzban panel API (https://github.com/Gozargah/Marzban).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Models/Schemas Module
//!
//! This module contains all the models/schemas used in the application.
//!
//! There is no specific documentation for this module, as it is just a collection of structs.
//!
//! For more information on each struct, please refer to the Marzban API documentation.

pub mod admin;
pub mod auth;
pub mod base;
pub mod errors;
pub mod node;
pub mod proxy;
pub mod system;
pub mod token;
pub mod user;
pub mod user_template;