mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-30 08:44:57 +00:00
14 lines
446 B
Lua
14 lines
446 B
Lua
-- Audit log statistics module
|
|
-- DEPRECATED: This file redirects to stats/init.lua
|
|
-- Individual functions are now in separate files under stats/
|
|
--
|
|
-- Migration guide:
|
|
-- Old: local stats = require("stats")
|
|
-- New: local stats = require("stats.init")
|
|
-- Or import individual functions:
|
|
-- local calculateStats = require("stats.calculate_stats")
|
|
--
|
|
-- Types are defined in stats/types.lua
|
|
|
|
return require("stats.init")
|