diff options
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)) => { |
