aboutsummaryrefslogtreecommitdiff
path: root/tests/nya.lua
diff options
context:
space:
mode:
authorame <[email protected]>2025-01-09 00:05:13 -0600
committerame <[email protected]>2025-01-09 00:05:41 -0600
commit23e55816c48626e2a16bafd04e63f0d664600768 (patch)
tree9c969b1210934015233f833d97eafd805fbe7b00 /tests/nya.lua
parentb4b79eedb97b548ab4527e06a4c3fc3d0910057b (diff)
fix file upload and rewrite buffer reading
Diffstat (limited to 'tests/nya.lua')
-rw-r--r--tests/nya.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/nya.lua b/tests/nya.lua
new file mode 100644
index 0000000..ca5299c
--- /dev/null
+++ b/tests/nya.lua
@@ -0,0 +1,8 @@
+llby = require "lullaby"
+
+llby.net.listen(function(server)
+ server:GET("/", function(res, req)
+ print("hi")
+ llby.io.pprint(req)
+ end)
+end, 8887)