imported>Northern Muriqui Post-processing: done. Next: actual API. |
(No difference)
|
Latest revision as of 01:28, 31 August 2014
Documentation for this module may be created at Module:Sandbox/Lucas Thoms/doc
local p = {}
function p.count(frame)
local username = frame.args[1] --for now api output should be passed
local query = mw.uri.encode(username, QUERY)
local result = username --for now, will eventually be changed to real result
local decode = string.match(result, 't..(%d+)')
return decode
end
return p