Main/resources/[standalone]/fmLib/init.lua
2025-06-07 08:51:21 +02:00

18 lines
No EOL
341 B
Lua

FM = {}
function FM:construct()
setmetatable({}, self)
self.__index = self
return self
end
exports('new', function()
return FM:construct()
end)
if not IsDuplicityVersion() then
RegisterNUICallback('fetchSettings', function(data, cb)
cb({
settings = Settings
})
end)
end