sunk 0.1.2

Rust bindings for the Subsonic music streaming API
Documentation
1
2
3
4
5
6
7
8
9
use client;
use error;

pub fn demo_site() -> error::Result<client::Client> {
    let site = "http://demo.subsonic.org";
    let user = "guest3";
    let password = "guest";
    client::Client::new(site, user, password)
}