mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 23:34:56 +00:00
12 lines
295 B
Lua
12 lines
295 B
Lua
--- Role Editor Package
|
|
--- Provides configurable role management UI components
|
|
---@module init
|
|
|
|
---@class RoleEditorModule
|
|
---@field role table Role management functions
|
|
---@field config table Configuration utilities
|
|
return {
|
|
role = require("role"),
|
|
config = require("config")
|
|
}
|