mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-12 05:27:07 +00:00
1b05aad30c
This PR extracts the `Story` component into a separate `story` crate so that it can be shared among various crates that define stories. Release Notes: - N/A --------- Co-authored-by: Nate Butler <iamnbutler@gmail.com>
17 lines
249 B
Rust
17 lines
249 B
Rust
mod colors;
|
|
mod players;
|
|
mod status;
|
|
mod syntax;
|
|
mod system;
|
|
|
|
#[cfg(feature = "stories")]
|
|
mod stories;
|
|
|
|
pub use colors::*;
|
|
pub use players::*;
|
|
pub use status::*;
|
|
pub use syntax::*;
|
|
pub use system::*;
|
|
|
|
#[cfg(feature = "stories")]
|
|
pub use stories::*;
|