reorganize into modules

This commit is contained in:
alice pellerin
2026-03-16 20:31:39 -05:00
parent de674cef09
commit 9f17ea00f9
5 changed files with 282 additions and 245 deletions
+9
View File
@@ -0,0 +1,9 @@
use std::borrow::Cow;
use ratatui::{style::Style, text::Span};
pub const fn empty_span() -> Span<'static> {
Span {
style: Style::new(),
content: Cow::Borrowed("")
}
}