mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
12 lines
232 B
Lua
12 lines
232 B
Lua
-- Formatters module for stats display
|
|
local stats = require("stats")
|
|
|
|
---@class FormattersModule
|
|
local M = {}
|
|
|
|
-- Export formatting functions
|
|
M.formatLabel = stats.formatLabel
|
|
M.formatValue = stats.formatValue
|
|
|
|
return M
|