moonshark-dk/libs/install.lua
2025-05-21 22:04:43 -05:00

11 lines
126 B
Lua

local m = {}
function m.is_installed()
if fs.exists(".installed") then
return true
else
return false
end
end
return m