blob: a91374fdf982fc8d7cb84ea3b3a0a51b6502b4e6 [file] [log] [blame]
package fake
import (
"v.io/core/veyron2"
"v.io/core/veyron2/context"
"v.io/core/veyron/runtimes/fake"
)
func init() {
veyron2.RegisterProfileInit(Init)
}
func Init(ctx *context.T) (veyron2.RuntimeX, *context.T, veyron2.Shutdown, error) {
return fake.Init(ctx)
}