blob: 3dad573db7a1228c76fa35494eb038c1feb6310d [file] [log] [blame]
// The app package contains the struct that keeps per javascript app state and handles translating
// javascript requests to veyron requests and vice versa.
package app
import (
"time"
"v.io/v23/vtrace"
)
type RpcRequest struct {
Name string
Method string
NumInArgs int32
NumOutArgs int32
IsStreaming bool
Deadline time.WireDeadline
TraceRequest vtrace.Request
}
type RpcResponse struct {
OutArgs []any
TraceResponse vtrace.Response
}