local net = require('libs/net') local notify = {} local DEFAULT_PREFIX = 'chatBox' notify.SERVER = 'notify.com' notify.sendChatMessage = function(message, prefix) prefix = prefix or os.getComputerLabel() or DEFAULT_PREFIX return net.sendQuery(notify.SERVER, { type = 'notify-chat', payload = { prefix = prefix, message = message } }) end return notify