1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00
RedMew/server_commands.lua

10 lines
144 B
Lua
Raw Normal View History

2018-09-21 20:48:12 +02:00
local Poll = require 'poll'
local Public = {}
function Public.get_poll_result(id)
Poll.send_poll_result_to_discord(id)
end
return Public