Documentation for this module may be created at Module:Resolve category redirect/doc
local p = {}
function p.main(frame)
return ''
end
function p._main(args)
return ''
end
setmetatable(p, {
__index = function(t, k)
local f = function(frame)
return ''
end
rawset(t, k, f)
return f
end
})
return p