diff options
| author | LLLL Colonq <llll@colonq> | 2025-08-14 22:28:39 -0400 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2025-08-14 22:28:39 -0400 |
| commit | e4ded2c09e6c378040f80e80886aa9c087fe14b4 (patch) | |
| tree | 74984adf49dde6a1fe7b3b22c0d9c3e2168df267 /crates/renderer/src/main.rs | |
| parent | 4fb92d6fa3ce2d93c2ce720429f46aa104972674 (diff) | |
Automata rendering
Diffstat (limited to 'crates/renderer/src/main.rs')
| -rw-r--r-- | crates/renderer/src/main.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/crates/renderer/src/main.rs b/crates/renderer/src/main.rs index 4e96e7f..4b3f6e3 100644 --- a/crates/renderer/src/main.rs +++ b/crates/renderer/src/main.rs @@ -1,10 +1,10 @@ #![allow(dead_code, unused_variables)] mod assets; mod terminal; -mod fig; mod background; mod toggle; mod overlay; +mod input; use teleia::*; use clap::{command, Command}; @@ -30,10 +30,6 @@ pub fn main() -> Erm<()> { Command::new("model-multi-overlay") .about("Run the LCOLONQ + Maude multi model renderer in a full-screen transparent overlay") ) - .subcommand( - Command::new("server") - .about("Run the LCOLONQ online websocket server") - ) .get_matches(); match matches.subcommand() { Some(("shader-overlay", _cm)) => { |
