Add forecast support
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Isaac Mills 2025-07-29 14:29:03 -06:00
parent f719983c62
commit 2c2246ae00
Signed by: fnmain
GPG key ID: B67D7410F33A0F61
4 changed files with 90 additions and 41 deletions

View file

@ -45,6 +45,14 @@ fn main() {
code: event::KeyCode::Right,
..
}) => app.next_tab(),
event::Event::Key(event::KeyEvent {
code: event::KeyCode::Up,
..
}) => app.prev_item(),
event::Event::Key(event::KeyEvent {
code: event::KeyCode::Down,
..
}) => app.next_item(),
event::Event::Key(event::KeyEvent {
code: event::KeyCode::Char(c),
..