rust_rocket/
lib.rs

1//! This is the rust-rocket crate.
2//! It is designed to work as a client library for GNU Rocket.
3
4pub mod client;
5pub mod interpolation;
6pub mod player;
7pub mod track;
8
9pub use client::RocketClient;
10pub use player::RocketPlayer;