dotfiles from arch
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
local pub = require 'pub.pub'
|
||||
local await = require 'await'
|
||||
|
||||
pub.on('log', function (params, brave)
|
||||
log.raw(brave.id, params.level, params.msg, params.src, params.line, params.clock)
|
||||
end)
|
||||
|
||||
pub.on('mem', function (count, brave)
|
||||
brave.memory = count
|
||||
end)
|
||||
|
||||
pub.on('proto', function (params)
|
||||
local proto = require 'proto'
|
||||
await.call(function ()
|
||||
if params.method then
|
||||
proto.doMethod(params)
|
||||
else
|
||||
proto.doResponse(params)
|
||||
end
|
||||
end)
|
||||
end)
|
||||
|
||||
pub.on('protoerror', function (err)
|
||||
log.warn('Load proto error:', err)
|
||||
os.exit(0, true)
|
||||
end)
|
||||
|
||||
pub.on('wakeup', function () end)
|
||||
Reference in New Issue
Block a user