示例#1
0
文件: mux.go 项目: st3v/fakesandra
func (opmux *opcodeMux) ServeCQL(req proto.Frame, rw proto.ResponseWriter) {
	handler, found := opmux.Handler(req.Opcode())
	if !found {
		// TODO: write error to ResponseWriter
	}

	handler.ServeCQL(req, rw)
}