bpi-rs 0.2.0

Bilibili API client library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 评论
pub mod action;
mod client;
pub mod list;
pub mod types;

pub use action::{
    CommentActionParams, CommentAddParams, CommentDeleteParams, CommentReportParams, CommentType,
    ReportReason,
};
pub use client::CommentClient;
pub use list::{
    CommentCountParams, CommentHotParams, CommentListParams, CommentRepliesParams, CommentSort,
    CommentTarget,
};