exa/src/style/mod.rs
Benjamin Sago dd838c2dc1 Move Colours and LSColors to their own module
The ‘options’ module is allowed to depend on ‘style’, but ‘options::render’ is not.
2017-08-26 21:40:37 +01:00

6 lines
84 B
Rust

mod colours;
pub use self::colours::Colours;
mod lsc;
pub use self::lsc::LSColors;