mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 23:04:57 +00:00
12 lines
276 B
Lua
12 lines
276 B
Lua
--- Cancel a scheduled stream
|
|
---@param stream_id string Stream ID to cancel
|
|
---@return CancelStreamAction Cancel stream action
|
|
local function cancel_stream(stream_id)
|
|
return {
|
|
action = "cancel_stream",
|
|
stream_id = stream_id
|
|
}
|
|
end
|
|
|
|
return cancel_stream
|