blob: 561886d78bbd96f6a4ea2a326a3b21d646d1835a [file] [log] [blame]
package ipc
import (
"veyron2/ipc"
)
// context implements the ipc.ServerContext interface.
type context struct{}
// InternalNewContext creates a new ipc.Context. This function should only
// be called from within the runtime implementation.
func InternalNewContext() ipc.Context {
return &context{}
}