xe621 0.6.3

Rust crate for the E621 API (a large online archive of furry art).
Documentation
1
2
3
4
5
6
7
8
use xe621::client::Client;

#[test]
fn impl_std_error_trait() -> Result<(), Box<dyn std::error::Error>> {
    Client::new("MyProject/1.0 (by username on e621)")?;

    Ok(())
}