pandora_api/
lib.rs

1/*!
2Low-level bindings to the (unofficial) Pandora web api.
3
4The implementation is based on (and this documentation derives heavily from)
5the [Unofficial Pandora API documentation](https://6xq.net/pandora-apidoc/),
6used with permission under the [WTFPL](https://github.com/PromyLOPh/pandora-apidoc/blob/master/LICENSE).
7
8Not all possible messages are supported.  This crate does export stub functions
9for unsupported message types that are known, but they call `unimplemented!()`,
10and are clearly indicated in the API documentation.
11
12*/
13// SPDX-License-Identifier: MIT AND WTFPL
14
15#![deny(missing_docs)]
16pub mod errors;
17pub mod json;
18// TODO: add REST support
19// https://6xq.net/pandora-apidoc/rest/
20//pub mod rest;