mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-29 16:24:58 +00:00
12 lines
199 B
Lua
12 lines
199 B
Lua
local M = {}
|
|
|
|
function M.on_install(ctx)
|
|
return { message = "Login Page installed", version = ctx.version }
|
|
end
|
|
|
|
function M.on_uninstall()
|
|
return { message = "Login Page removed" }
|
|
end
|
|
|
|
return M
|