mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-30 16:54:57 +00:00
22 lines
366 B
Lua
22 lines
366 B
Lua
-- Audit log package initialization
|
|
local M = {}
|
|
|
|
---@class AuditLogPackage
|
|
---@field name string
|
|
---@field version string
|
|
|
|
--- Package name
|
|
M.name = "audit_log"
|
|
|
|
--- Package version
|
|
M.version = "1.0.0"
|
|
|
|
--- Initialize the audit log package
|
|
---@return boolean
|
|
function M.init()
|
|
log("Audit log package initialized")
|
|
return true
|
|
end
|
|
|
|
return M
|