Merge pull request #412 from 1995parham/master

Adds Server command for Lua scripts.
This commit is contained in:
Josh Baker 2019-02-17 13:38:28 -07:00 committed by GitHub
commit b37033d281
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -622,6 +622,8 @@ func (c *Server) commandInScript(msg *Message) (
res, err = c.cmdKeys(msg)
case "test":
res, err = c.cmdTest(msg)
case "server":
res, err = c.cmdServer(msg)
}
return
}