mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-03 18:24:53 +00:00
16 lines
197 B
Lua
16 lines
197 B
Lua
-- Stream Cast initialization
|
|
local M = {}
|
|
|
|
M.name = "stream_cast"
|
|
M.version = "1.0.0"
|
|
|
|
function M.init()
|
|
return {
|
|
name = M.name,
|
|
version = M.version,
|
|
loaded = true
|
|
}
|
|
end
|
|
|
|
return M
|