TBR mojo/v23proxy: Fix the v23.Init

Related to go/vcl/17560, we have to pass the mojo context to our
v23.Init call.

Change-Id: I0c542fd662e0a47d7689a937d2c7e79174a18834
diff --git a/go/src/v.io/x/mojo/proxy/proxy.go b/go/src/v.io/x/mojo/proxy/proxy.go
index 1e64bfd..17b9d8f 100644
--- a/go/src/v.io/x/mojo/proxy/proxy.go
+++ b/go/src/v.io/x/mojo/proxy/proxy.go
@@ -210,7 +210,7 @@
 	// Start up v23 whenever a v23proxy is begun.
 	// This is done regardless of whether we are initializing this v23proxy for use
 	// as a client or as a server.
-	ctx, shutdown := v23.Init()
+	ctx, shutdown := v23.Init(context)
 	delegate.ctx = ctx
 	delegate.shutdown = shutdown