unsuccessfull attempt at renaming terminal to io...

This commit is contained in:
2026-06-20 14:30:26 +03:00
parent ab48b57e1b
commit 93c632ed6e
5 changed files with 5 additions and 20 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
local module = {}
module.dependencies = { "io" }
module.dependencies = { "terminal" }
function module.check()
return true -- This module should always be loaded
+2 -2
View File
@@ -18,7 +18,7 @@ function module.init()
local component = require("component")
local gpu = component.gpu
_G._PUBLIC.io = {}
_G._PUBLIC.terminal = {}
local readHistory = {}
function _PUBLIC.terminal.getHistory(id)
@@ -811,7 +811,7 @@ function module.init()
end
function module.exit()
_G._PUBLIC.io = nil
_G._PUBLIC.terminal = nil
end
return module