mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 22:34:56 +00:00
12 lines
209 B
Lua
12 lines
209 B
Lua
local M = {}
|
|
|
|
function M.on_install(context)
|
|
return { message = "Stream Cast installed", version = context.version }
|
|
end
|
|
|
|
function M.on_uninstall()
|
|
return { message = "Stream Cast removed" }
|
|
end
|
|
|
|
return M
|