blob: ab90ff3c19e06a80330813514f0fb6b194b56364 [file] [log] [blame]
Matt Rosencrantz19329122015-01-23 22:18:49 -08001package fake
2
3import (
4 "v.io/core/veyron2"
5 "v.io/core/veyron2/context"
6
7 "v.io/core/veyron/runtimes/fake"
8)
9
10func init() {
11 veyron2.RegisterProfileInit(Init)
12}
13
Matt Rosencrantzba470a52015-01-26 13:36:13 -080014func Init(ctx *context.T) (veyron2.Runtime, *context.T, veyron2.Shutdown, error) {
Matt Rosencrantz19329122015-01-23 22:18:49 -080015 return fake.Init(ctx)
16}