mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
20 lines
429 B
Lua
20 lines
429 B
Lua
-- Quick Guide package initialization
|
|
|
|
---@class QuickGuideModule
|
|
---@field name string Package name
|
|
---@field version string Package version
|
|
---@field init fun(): boolean Initialize the module
|
|
local M = {}
|
|
|
|
M.name = "quick_guide"
|
|
M.version = "1.0.0"
|
|
|
|
---Initialize the quick guide module
|
|
---@return boolean Success status
|
|
function M.init()
|
|
log("Quick Guide package initialized")
|
|
return true
|
|
end
|
|
|
|
return M
|