mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
14 lines
198 B
Rust
14 lines
198 B
Rust
#![feature(fnbox)]
|
|
|
|
extern crate librespot;
|
|
extern crate libc;
|
|
extern crate eventual;
|
|
|
|
pub mod artist;
|
|
pub mod link;
|
|
pub mod metadata;
|
|
pub mod session;
|
|
pub mod track;
|
|
mod types;
|
|
mod cstring_cache;
|
|
|