mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-01 17:24:57 +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
|