Files
opus-apps/shellex/apis/sh.lua

6 lines
135 B
Lua

local shell = _ENV.shell
return {
execute = function(_, ...) return shell.run(...) end,
getLastExitCode = function() return 0 end,
}