multiMiner + cloud catcher

This commit is contained in:
kepler155c@gmail.com
2019-01-13 13:26:19 -05:00
parent 91d434f93d
commit dee2b05cfb
7 changed files with 236 additions and 21 deletions

13
core/cedit.lua Normal file
View File

@@ -0,0 +1,13 @@
local read = _G.read
local shell = _ENV.shell
if not _G.cloud_catcher then
print('Paste key: ')
local key = read()
if #key == 0 then
return
end
shell.openHiddenTab('cloud ' .. key)
end
shell.run('cloud edit ' .. table.unpack({ ... }))