//! # Spinners for Rust
//!
//! [](https://crates.io/crates/spinners-rs)
//! [](https://github.com/jewlexx/spinners-rs/blob/master/LICENSE)
//! [](https://docs.rs/spinners-rs/)
//! [](https://crates.io/crates/spinners-rs)
//!
//! A lightweight collection of 80+ spinners for Rust, designed for speed and minimal overhead.
//!
//! ## Basic Example
//!
//! ```rust
//! use std::{thread, time::Duration};
//! use spinners_rs::{Spinner, Spinners};
//!
//! let mut sp = Spinner::new(Spinners::Arrow, "Doing Some Things...");
//!
//! sp.start();
//!
//! thread::sleep(Duration::from_secs(3));
//! ```
// All of the actual code is stored in other files
// This is the main file that includes the code for the Spinner struct
// This is the file that includes all the data for the spinners like the spinner enum and the frames
pub use *;
pub use *;