cyndikator 0.2.2

A cli rss reader
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crossterm::{QueueableCommand, Result};

mod alt;
mod clear;
mod cur;
mod full;

pub use alt::AltScreen;
pub use clear::Clear;
pub use cur::ShowCur;
pub use full::Full;

pub trait Draw {
    fn draw(&self, out: &mut impl QueueableCommand) -> Result<()>;
}