mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
8 lines
215 B
Lua
8 lines
215 B
Lua
--- Generate a unique step ID
|
|
---@return string Unique step identifier
|
|
local function generate_step_id()
|
|
return "step_" .. tostring(os.time()) .. "_" .. math.random(1000, 9999)
|
|
end
|
|
|
|
return generate_step_id
|