diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-04-24 15:42:56 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-04-24 15:47:42 +0200 |
| commit | 8fbb11fc05b3313bf102c1f23693290661d00863 (patch) | |
| tree | a198db77338f1cc1304fe50f55020b08e22bca60 /src/model/mod.rs | |
| parent | e4ee14e54fb87961096856c7ea105435b7cc3c45 (diff) | |
Extract `model` module
Diffstat (limited to 'src/model/mod.rs')
| -rw-r--r-- | src/model/mod.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/model/mod.rs b/src/model/mod.rs new file mode 100644 index 00000000..df39207f --- /dev/null +++ b/src/model/mod.rs @@ -0,0 +1,14 @@ +//! Structured representation of styled content. + +#[macro_use] +mod styles; +mod collapse; +mod content; +mod layout; +mod show; + +pub use collapse::*; +pub use content::*; +pub use layout::*; +pub use show::*; +pub use styles::*; |
