mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-30 00:34:56 +00:00
16 lines
571 B
Lua
16 lines
571 B
Lua
--- Audit log formatting module
|
|
--- DEPRECATED: This file redirects to formatting/init.lua
|
|
--- Individual functions are now in separate files under formatting/
|
|
---
|
|
--- Migration guide:
|
|
--- Old: local formatting = require("formatting")
|
|
--- New: local formatting = require("formatting.init")
|
|
--- Or import individual functions:
|
|
--- local formatTimestamp = require("formatting.format_timestamp")
|
|
---
|
|
--- Types are defined in formatting/types.lua
|
|
---@module formatting
|
|
---@deprecated Use formatting.init instead
|
|
|
|
return require("formatting.init")
|