cloud edit + logger removal

This commit is contained in:
kepler155c@gmail.com
2019-01-23 15:28:43 -05:00
parent dc915337a0
commit 073f4c1a6d
7 changed files with 50 additions and 143 deletions

12
sys/apps/cshell.lua Normal file
View File

@@ -0,0 +1,12 @@
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
print('Connecting...')
shell.run('cloud ' .. key)
end