add filesystem

This commit is contained in:
unknown
2022-02-13 00:31:20 -05:00
parent ef2ceed755
commit 4cfacb1abc
19 changed files with 148 additions and 16 deletions

View File

@ -0,0 +1,7 @@
{
"name": "help",
"license": "MIT",
"version": 0.1,
"engine": 0.4,
"help": "prints out help"
}

View File

@ -0,0 +1,9 @@
function help(pos, input, data)
local output = ""
for command, def in pairs(computers.registered_confs) do
output = output .. "\n" .. command .. ": " .. def.help
end
return output
end
return help