Libraries for interacting with Soundpad
```rust
async fn main -> Result<()> { // Create a new API client let client = ClientBuilder::new().connect()?; // Retrieve a list with all available sounds from Soundpad let sounds = client.getsoundlist().await?; // Play the first sound client.play_sound(sounds[0]) } ```