This commit is contained in:
2025-12-12 17:14:05 -05:00
parent facaef5983
commit 5890c68d8e
5 changed files with 101 additions and 11 deletions

12
server/main.lua Normal file
View File

@@ -0,0 +1,12 @@
local kernel = require("kernel")
local chat = kernel.addServerHandler("chat-server")
local function run()
print("Starting Server...")
local tasks = {}
table.insert(tasks, chat.main)
parallel.waitForAll(table.unpack(tasks))
end
return { run = run }