Files
module-fastwebcore/target/fastweb/auto_lock.lua
2026-03-31 16:00:38 +08:00

12 lines
172 B
Lua

local M = {}
M.__index = M
function M.new(mutex)
local instance = setmetatable({}, M)
instance.module = fw_auto_lock.new(mutex)
return instance
end
return M