use std::process::exit;
pub fn run(port: Option<u16>) {
if port.is_some() {
eprintln!("TCP transport not supported yet. Starting stdio...");
}
let rt = tokio::runtime::Runtime::new().unwrap();
rt.block_on(async {
masl_lsp::start_lsp_server().await;
});
exit(0);
}