From ebc6e79cf00eb2954ceb7a99707ab4eb68d8dbfb Mon Sep 17 00:00:00 2001 From: light-ly Date: Sat, 21 Sep 2024 23:15:17 +0800 Subject: [PATCH] add core decl in main --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 9312f76..19b094f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -6,6 +6,7 @@ use std::sync::Arc; use structopt::StructOpt; use tower_lsp::{LspService, Server}; +mod core; mod completion; mod definition; mod diagnostics;