[Add] basic App connection
This commit is contained in:
parent
793df86081
commit
7209e7ff57
6 changed files with 425 additions and 32 deletions
|
|
@ -18,6 +18,7 @@ static LOGGER: OnceLock<mpsc::Sender<LogMessage>> = OnceLock::new();
|
|||
pub enum PrintType {
|
||||
Call,
|
||||
Client,
|
||||
App,
|
||||
Iota,
|
||||
Omikron,
|
||||
Omega,
|
||||
|
|
@ -77,6 +78,7 @@ fn colorize(kind: PrintType, is_error: bool) -> Color {
|
|||
match kind {
|
||||
PrintType::Call => Color::Purple,
|
||||
PrintType::Client => Color::Green,
|
||||
PrintType::App => Color::Green,
|
||||
PrintType::Iota => Color::Yellow,
|
||||
PrintType::Omikron => Color::Blue,
|
||||
PrintType::Omega => Color::Cyan,
|
||||
|
|
|
|||
Loading…
Reference in a new issue