orchestral-cli 0.2.0

Command line interface for running Orchestral workflows
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crossterm::event::KeyEvent;

#[derive(Debug, Clone)]
#[allow(dead_code)]
pub enum UiMsg {
    Key(KeyEvent),
    Paste(String),
    Resize(u16, u16),
    UiTick,
    AnimTick,
    Runtime(crate::runtime::RuntimeMsg),
    SubmitInput(String),
    ScrollUp,
    ScrollDown,
    Interrupt,
    Quit,
}