diff options
author | 2025-05-30 14:10:30 +0100 | |
---|---|---|
committer | 2025-05-30 14:10:30 +0100 | |
commit | f2e8875b33d0bc5274e996916aa1f3bf4ec9f83c (patch) | |
tree | 71c66f8552d045add4812a5bca729aad39014145 /src/writer.rs | |
parent | 6d1f28eb79c6c70b058fcbae5047dbd744764149 (diff) | |
download | peanuts-f2e8875b33d0bc5274e996916aa1f3bf4ec9f83c.tar.gz peanuts-f2e8875b33d0bc5274e996916aa1f3bf4ec9f83c.tar.bz2 peanuts-f2e8875b33d0bc5274e996916aa1f3bf4ec9f83c.zip |
fix: make `Loggable` public
Diffstat (limited to 'src/writer.rs')
-rw-r--r-- | src/writer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/writer.rs b/src/writer.rs index c30f03e..205ee7f 100644 --- a/src/writer.rs +++ b/src/writer.rs @@ -14,7 +14,7 @@ use crate::{ Result, XMLNS_NS, XML_NS, }; use endable::Endable; -use loggable::Loggable; +pub use loggable::Loggable; mod endable; mod loggable; |