bilive 0.1.1

A Rust library for interacting with Bilibili's live streaming services.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod appkey;
pub mod bapi;
mod client;
pub mod live;
pub mod session;
pub mod user;
pub mod wbi;

#[cfg(test)]
mod tests {
    use ctor::ctor;

    #[ctor]
    fn init_tracing() {
        tracing_subscriber::fmt().with_env_filter("trace").init();
    }
}