Adds Server command for lua scripts.

This commit is contained in:
Parham Alvani 2019-02-17 13:28:20 +03:30
parent 99508c9af7
commit e0ddd5e6a6
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
}