feat: gate the language world behind number verification
This commit is contained in:
parent
4006f3454c
commit
f8c8db4d48
39 changed files with 1445 additions and 129 deletions
|
|
@ -1,6 +1,13 @@
|
|||
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
||||
|
||||
fn main() {
|
||||
if std::env::args().any(|argument| argument == "--mcp") {
|
||||
if let Err(error) = hololake_native_desktop_lib::run_mcp() {
|
||||
eprintln!("{error}");
|
||||
std::process::exit(1);
|
||||
}
|
||||
return;
|
||||
}
|
||||
if std::env::args().any(|argument| argument == "--connector") {
|
||||
if let Err(error) = hololake_native_desktop_lib::run_connector() {
|
||||
eprintln!("{error}");
|
||||
|
|
|
|||
Loading…
Reference in a new issue