proper module format

This commit is contained in:
Mikayla Fischler 2022-05-10 17:09:02 -04:00
parent e3a4ed5363
commit 87de804a9e

View File

@ -1,8 +1,12 @@
local comms = require("scada-common.comms") local comms = require("scada-common.comms")
local coordinator = {}
-- coordinator communications -- coordinator communications
function coord_comms() coordinator.coord_comms = function ()
local self = { local self = {
reactor_struct_cache = nil reactor_struct_cache = nil
} }
end end
return coordinator