mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
12 lines
207 B
Lua
12 lines
207 B
Lua
local M = {}
|
|
|
|
function M.on_install(context)
|
|
return { message = "Social Hub installed", version = context.version }
|
|
end
|
|
|
|
function M.on_uninstall()
|
|
return { message = "Social Hub removed" }
|
|
end
|
|
|
|
return M
|