Wow Such Doge
Dog API client in Rust.
Usage
Command Line
cargo run
: output list of breedscargo run <breed>
output all dogs of breedcargo run random
: output random dogcargo run random <breed>
output random dog of breed
Library
use wow_such_doge::Dogs;
let dogs = Dogs::new();
let breeds = Dogs::breeds();
let random_dog = Dogs::random_image();
let random_dog_of_breed = Dogs::random_image_by_breed("<breed>");
Description
Languages
Rust
100%