lib-mal 0.5.1

A library for interacting with the MyAnimeList API
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(unused)]

use lib_mal::prelude::*;

use simple_log::console;
use simple_log::{info, warn};

fn main() {
    simple_log::console("debug");
    warn!("This is a library, this binary is for testing purposes");
}