This commit is contained in:
2025-06-15 15:31:04 -04:00
parent f6964a2bd4
commit 9a7cd1c04b
3 changed files with 27 additions and 1 deletions

11
environment_main.lua Normal file
View File

@@ -0,0 +1,11 @@
local function runMonitor()
while true do
print("Running Environment Monitor")
end
end
local function run()
parallel.waitForAll(runMonitor)
end
return { run = run}