summaryrefslogtreecommitdiff
path: root/main.lua
diff options
context:
space:
mode:
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua23
1 files changed, 0 insertions, 23 deletions
diff --git a/main.lua b/main.lua
deleted file mode 100644
index 8e581d14..00000000
--- a/main.lua
+++ /dev/null
@@ -1,23 +0,0 @@
-local currentPath = debug.getinfo(1, 'S').source:sub(2)
-local rootPath = currentPath:gsub('[/\\]*[^/\\]-$', '')
-loadfile((rootPath == '' and '.' or rootPath) .. '/platform.lua')('script')
-local fs = require 'bee.filesystem'
-ROOT = fs.current_path() / rootPath
-LANG = LANG or 'en-US'
-
---collectgarbage('generational')
-collectgarbage("setpause", 100)
-collectgarbage("setstepmul", 1000)
-
-log = require 'log'
-log.init(ROOT, ROOT / 'log' / 'service.log')
-log.info('Lua Lsp startup, root: ', ROOT)
-log.debug('ROOT:', ROOT:string())
-ac = {}
-
-xpcall(dofile, log.debug, rootPath .. '/debugger.lua')
-require 'utility'
-local service = require 'service'
-local session = service()
-
-session:listen()