TBR renaming party 11

MultiPart: 11/11
Change-Id: Ib900c8680c6ea3998524267b78bfc6be4f6b8345
diff --git a/go/src/p2b/main.go b/go/src/p2b/main.go
index e9f7e20..82901d1 100644
--- a/go/src/p2b/main.go
+++ b/go/src/p2b/main.go
@@ -9,8 +9,8 @@
 	"os"
 
 	_ "v.io/core/veyron/profiles/static"
-	"v.io/core/veyron2"
-	"v.io/core/veyron2/vlog"
+	"v.io/v23"
+	"v.io/v23/vlog"
 
 	"p2b/vdl"
 )
@@ -69,7 +69,7 @@
 		return
 	}
 
-	ctx, shutdown := veyron2.Init()
+	ctx, shutdown := v23.Init()
 	defer shutdown()
 
 	name := flag.Arg(0)
diff --git a/go/src/p2b/vdl/p2b.vdl.go b/go/src/p2b/vdl/p2b.vdl.go
index 97dfeba..5e83931 100644
--- a/go/src/p2b/vdl/p2b.vdl.go
+++ b/go/src/p2b/vdl/p2b.vdl.go
@@ -9,10 +9,10 @@
 import (
 	// VDL system imports
 	"io"
-	"v.io/core/veyron2"
-	"v.io/core/veyron2/context"
-	"v.io/core/veyron2/ipc"
-	"v.io/core/veyron2/vdl"
+	"v.io/v23"
+	"v.io/v23/context"
+	"v.io/v23/ipc"
+	"v.io/v23/vdl"
 )
 
 // ViewerClientMethods is the client interface
@@ -53,7 +53,7 @@
 	if c.client != nil {
 		return c.client
 	}
-	return veyron2.GetClient(ctx)
+	return v23.GetClient(ctx)
 }
 
 func (c implViewerClientStub) Pipe(ctx *context.T, opts ...ipc.CallOpt) (ocall ViewerPipeCall, err error) {