1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
//! # Hojicha
//!
//! The Elm Architecture for Terminal UIs in Rust.
//!
//! This is a convenience facade that re-exports the core hojicha crates:
//! - `hojicha-core`: Core TEA abstractions (Model, Cmd, Event)
//! - `hojicha-runtime`: Event loop and async runtime (Program)
//!
//! ## Quick Start
//!
//! ```no_run
//! use hojicha::prelude::*;
//!
//! struct Counter {
//! value: i32,
//! }
//!
//! impl Model for Counter {
//! type Message = ();
//!
//! fn update(&mut self, event: Event<()>) -> Cmd<()> {
//! match event {
//! Event::Key(key) => match key.key {
//! Key::Up => self.value += 1,
//! Key::Down => self.value -= 1,
//! Key::Char('q') => return quit(),
//! _ => {}
//! },
//! _ => {}
//! }
//! Cmd::noop()
//! }
//!
//! fn view(&self) -> String {
//! // Return a string with ANSI codes for terminal rendering
//! format!("Count: {}", self.value)
//! }
//! }
//!
//! fn main() -> Result<()> {
//! Program::new(Counter { value: 0 })?.run()
//! }
//! ```
// Re-export core functionality
pub use ;
// Type alias for compatibility
/// Alias for WindowSize for compatibility
pub type Size = WindowSize;
// Re-export runtime
pub use ;
/// Convenience function to run a Hojicha application
///
/// # Example
/// ```no_run
/// # use hojicha::{Model, Event, Cmd};
/// # struct MyApp;
/// # impl Model for MyApp {
/// # type Message = ();
/// # fn update(&mut self, _: Event<()>) -> Cmd<()> { Cmd::noop() }
/// # fn view(&self) -> String { String::new() }
/// # }
/// hojicha::run(MyApp, ()).expect("Failed to run app");
/// ```
/// Prelude module containing commonly used types and traits