mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-28 07:44:56 +00:00
12 lines
311 B
Lua
12 lines
311 B
Lua
--- Thread ranking facade for forum_forge
|
|
--- Re-exports single-function modules for backward compatibility
|
|
---@module thread_rank
|
|
|
|
---@class ThreadRankModule
|
|
---@field rank_thread fun(thread: Thread): number Calculate thread rank score
|
|
local M = {}
|
|
|
|
M.rank_thread = require("rank_thread")
|
|
|
|
return M
|