TBR syncbase: fix import paths post-merge

MultiPart: 1/2
Change-Id: Icc1015776991f39d31f219398bb43c09e5cb14a2
diff --git a/services/syncbase/server/app.go b/services/syncbase/server/app.go
index c404f77..89469e3 100644
--- a/services/syncbase/server/app.go
+++ b/services/syncbase/server/app.go
@@ -8,18 +8,18 @@
 	"path"
 	"sync"
 
-	wire "v.io/syncbase/v23/services/syncbase"
-	nosqlwire "v.io/syncbase/v23/services/syncbase/nosql"
-	"v.io/syncbase/x/ref/services/syncbase/server/interfaces"
-	"v.io/syncbase/x/ref/services/syncbase/server/nosql"
-	"v.io/syncbase/x/ref/services/syncbase/server/util"
-	"v.io/syncbase/x/ref/services/syncbase/store"
 	"v.io/v23/context"
 	"v.io/v23/glob"
 	"v.io/v23/rpc"
 	"v.io/v23/security/access"
+	wire "v.io/v23/services/syncbase"
+	nosqlwire "v.io/v23/services/syncbase/nosql"
 	"v.io/v23/verror"
 	"v.io/x/lib/vlog"
+	"v.io/x/ref/services/syncbase/server/interfaces"
+	"v.io/x/ref/services/syncbase/server/nosql"
+	"v.io/x/ref/services/syncbase/server/util"
+	"v.io/x/ref/services/syncbase/store"
 )
 
 // app is a per-app singleton (i.e. not per-request) that handles App RPCs.