diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2018-12-18 16:44:14 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2018-12-18 16:44:14 +0800 |
commit | a294793e3c07bd5774a69f50e38a41598a5d16c0 (patch) | |
tree | 26090248fae331c6f8a414b9360c5ed052684725 /server/src/workspace.lua | |
parent | f5f6a8df0cd377eaf72e89f5edca4260794f60b0 (diff) | |
download | lua-language-server-a294793e3c07bd5774a69f50e38a41598a5d16c0.zip |
准备支持工作目录
Diffstat (limited to 'server/src/workspace.lua')
-rw-r--r-- | server/src/workspace.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/server/src/workspace.lua b/server/src/workspace.lua new file mode 100644 index 00000000..f167719c --- /dev/null +++ b/server/src/workspace.lua @@ -0,0 +1,6 @@ +local mt = {} +mt.__index = {} + +return function () + +end |