aniline 0.3.0

A cli tool to search, play, download anime, create playlists and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Terminal interface and library for d2o5

pub mod client;
pub mod error;
pub mod mal;
mod utils;

pub use client::Client;
pub use error::AnilineError;
pub use utils::{Videos, Video};

#[test]
fn search_test() {
    let client = Client::new();
    println!("{:?}", client.search("Isekai Ojisan"));
}