mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
26 lines
407 B
Lua
26 lines
407 B
Lua
-- Code Editor initialization
|
|
|
|
---@class CodeEditor
|
|
---@field name string
|
|
---@field version string
|
|
local M = {}
|
|
|
|
M.name = "code_editor"
|
|
M.version = "1.0.0"
|
|
|
|
---@class InitResult
|
|
---@field name string
|
|
---@field version string
|
|
---@field loaded boolean
|
|
|
|
---@return InitResult
|
|
function M.init()
|
|
return {
|
|
name = M.name,
|
|
version = M.version,
|
|
loaded = true
|
|
}
|
|
end
|
|
|
|
return M
|