mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 23:34:56 +00:00
11 lines
192 B
Lua
11 lines
192 B
Lua
-- Config module for role editor
|
|
local role_editor = require("role.editor")
|
|
|
|
---@class ConfigModule
|
|
local M = {}
|
|
|
|
-- Export the editor component
|
|
M.RoleEditor = role_editor
|
|
|
|
return M
|