Matt Rosencrantz | 1932912 | 2015-01-23 22:18:49 -0800 | [diff] [blame] | 1 | package fake |
2 | |||||
3 | import ( | ||||
4 | "v.io/core/veyron2" | ||||
5 | "v.io/core/veyron2/context" | ||||
6 | |||||
7 | "v.io/core/veyron/runtimes/fake" | ||||
8 | ) | ||||
9 | |||||
10 | func init() { | ||||
11 | veyron2.RegisterProfileInit(Init) | ||||
12 | } | ||||
13 | |||||
Matt Rosencrantz | ba470a5 | 2015-01-26 13:36:13 -0800 | [diff] [blame] | 14 | func Init(ctx *context.T) (veyron2.Runtime, *context.T, veyron2.Shutdown, error) { |
Matt Rosencrantz | 1932912 | 2015-01-23 22:18:49 -0800 | [diff] [blame] | 15 | return fake.Init(ctx) |
16 | } |