mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-03 10:14:52 +00:00
12 lines
215 B
Lua
12 lines
215 B
Lua
-- Add schema action
|
|
|
|
require("schemas.types")
|
|
|
|
---Opens the add schema dialog
|
|
---@return ActionResult
|
|
local function addSchema()
|
|
return { success = true, action = "open_schema_dialog" }
|
|
end
|
|
|
|
return addSchema
|