aboutsummaryrefslogtreecommitdiff
path: root/tests/old/nets.lua
blob: a356539d93defe366fb168c472eac997ae04c459 (plain)
1
2
3
4
5
6
7
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)