func multiplyApi(ctx *fasthttp.RequestCtx) { log.Printf("[INPUT] %s\n", ctx.PostBody()) req := request{} if err := json.Unmarshal(ctx.PostBody(), &req); err != nil { ctx.SetStatusCode(400) ctx.SetBodyString("Invalid Json format!!") return } ctx.SetBodyString(strconv.Itoa(req.A * req.B))} Q. 이 경우, ctx는 포인터 변수인 것으로 추정하는데, ctx.PostBody() 이렇게, 포인터 변수 안에 PostBody()값으로 접근이 가능한거야? A.좋은 질문이야! Go의 포..