aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/nets.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/nets.lua b/tests/nets.lua
new file mode 100644
index 0000000..a356539
--- /dev/null
+++ b/tests/nets.lua
@@ -0,0 +1,8 @@
+llby = require"lullaby"
+
+llby.net.listen(function(server)
+ server:GET("/", function(res, req)
+ res:sendfile("license.md")
+ --res:sendfile("../awa/static/volcarona.gif")
+ end)
+end, 8888)