From 7f450568f25501dce8bb001fe211c5e3359caa55 Mon Sep 17 00:00:00 2001 From: J / Jacob Babich Date: Sat, 5 Oct 2024 02:55:12 -0400 Subject: [PATCH] fix: cover the new cases of `Command` for `GuiEframe` and `TuiRatatui` --- multibinary/src/main.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/multibinary/src/main.rs b/multibinary/src/main.rs index d6b8cdb..62f141f 100644 --- a/multibinary/src/main.rs +++ b/multibinary/src/main.rs @@ -58,5 +58,9 @@ fn main() { match command { #[cfg(feature = "cli-clap")] Command::CliClap => ac_qu_ai_nt_cli_clap::main(), + #[cfg(feature = "gui-eframe")] + Command::GuiEframe => todo!(), + #[cfg(feature = "tui-ratatui")] + Command::TuiRatatui => todo!(), } }