renamed lex to pre_process
This commit is contained in:
parent
1e18d97034
commit
883f31e73a
@ -62,6 +62,7 @@ end
|
||||
|
||||
function lex(msg)
|
||||
|
||||
if msg.text then
|
||||
local text = msg.text
|
||||
local chat_id = tostring(msg.to.id)
|
||||
local s, e = text:find("%$%a+")
|
||||
@ -76,6 +77,7 @@ function lex(msg)
|
||||
|
||||
msg.text = text:sub(0, s - 1) .. value .. text:sub(e + 1)
|
||||
end
|
||||
end
|
||||
|
||||
return msg
|
||||
end
|
||||
@ -87,6 +89,6 @@ return {
|
||||
"^!get (%a+)$",
|
||||
"^!get$"},
|
||||
run = run,
|
||||
lex = lex
|
||||
pre_process = lex
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user