Remove temp test file

This commit is contained in:
Filip Tibell 2025-04-27 22:42:57 +02:00
parent 11bce8412c
commit 49001bf6d6
No known key found for this signature in database

View file

@ -1,12 +0,0 @@
local net = require("@lune/net")
local counter = 0
net.serve(8080, function()
counter += 1
return {
status = 200,
body = "Hello! This is response #" .. tostring(counter),
}
end)
print("Listening on port 8080 🚀")