mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-03 10:14:52 +00:00
17 lines
458 B
Lua
17 lines
458 B
Lua
-- Schemas module facade
|
|
-- Re-exports all schemas functions for backward compatibility
|
|
|
|
require("schemas.types")
|
|
|
|
---@class SchemasModule
|
|
---@field render fun(ctx: SchemasRenderContext): UIComponent
|
|
---@field addSchema fun(): ActionResult
|
|
---@field editSchema fun(ctx: EditSchemaContext): ActionResult
|
|
local M = {}
|
|
|
|
M.render = require("schemas.render")
|
|
M.addSchema = require("schemas.add_schema")
|
|
M.editSchema = require("schemas.edit_schema")
|
|
|
|
return M
|