Module:User:Kai/sandbox

From The Deadlock Wiki
Revision as of 21:21, 27 August 2026 by Kai (talk | contribs) (Inspect string dump of select and where functions (via update-page on MediaWiki MCP Server))
Jump to navigation Jump to search

Documentation for this module may be created at Module:User:Kai/sandbox/doc

local p = {}

function p.view(frame)
    local b = mw.ext.bucket('feedback')
    local meta = getmetatable(b)
    local results = {}
    -- Let's test calling select directly without colon or inspect error message
    local success, err = pcall(function()
        b:select('page')
    end)
    return "Call error: " .. tostring(err)
end

return p