mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
- Simplified structure validation by re-exporting functions from structure_config and validate_structure modules for better maintainability. - Consolidated validation logic in validate.lua, delegating to validate_package module for clearer orchestration. - Introduced new quick guide functionalities including step management (add, remove, update, reset ordering) and media handling (thumbnail and video URL validation). - Added utility functions for URL validation and step creation, enhancing the quick guide's usability. - Established type definitions for steps and media states to improve code clarity and type safety. - Enhanced schema editor with new field and relation definitions, providing a more robust structure for database schema management.
20 lines
410 B
Lua
20 lines
410 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
|