Files
skynet/test/testping.lua
2014-04-16 20:12:17 +08:00

12 lines
268 B
Lua

local skynet = require "skynet"
local snax = require "snax"
skynet.start(function()
local ps = snax.newservice ("pingserver", "hello world")
print(ps.pub.hello())
print(ps.req.ping("foobar"))
print(pcall(ps.req.error))
print(ps.kill("exit"))
skynet.exit()
end)