diff options
author | cc <cc@localhost> | 2025-08-20 20:09:34 -0700 |
---|---|---|
committer | cc <cc@localhost> | 2025-08-20 20:09:34 -0700 |
commit | abdbc42639d0acd6fc0db381f7cbe6a37928643f (patch) | |
tree | 61d779ad5fe85020d3301106b72c1d1f859200d6 /src/label_formats/mod.rs | |
parent | a7ded0a844feac401be72a5b575cb0e0c3e12e01 (diff) |
Modularize Label Formats
Diffstat (limited to 'src/label_formats/mod.rs')
-rw-r--r-- | src/label_formats/mod.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/label_formats/mod.rs b/src/label_formats/mod.rs new file mode 100644 index 0000000..7386df8 --- /dev/null +++ b/src/label_formats/mod.rs @@ -0,0 +1,6 @@ +mod large_label_format; +mod label_format; + +pub use large_label_format::LargeLabelFormat; +pub use large_label_format::compress_large_labels; +pub use label_format::LabelFormat; |