blob: ab90ff3c19e06a80330813514f0fb6b194b56364 [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.Runtime, *context.T, veyron2.Shutdown, error) {
return fake.Init(ctx)
}