Query
Use ReceiveQuery()
to retrieve query fields.
package handlers
import "github.com/razshare/frizzante/connections"
func Welcome(connection *connections.Connection) { name := connection.ReceiveQuery("name") // Retrieves field "name". connection.SendMessage("Hello " + name) // Sends text.}