update import paths: github.com/giolekva/pcloud
diff --git a/chunk/chunk.go b/chunk/chunk.go
index 438e355..67f6ca1 100644
--- a/chunk/chunk.go
+++ b/chunk/chunk.go
@@ -3,7 +3,7 @@
 import (
 	"io"
 
-	"pcloud/api"
+	"github.com/giolekva/pcloud/api"
 )
 
 type ChunkInfo struct {
diff --git a/chunk/file.go b/chunk/file.go
index ddb43f6..b0d3d5a 100644
--- a/chunk/file.go
+++ b/chunk/file.go
@@ -4,7 +4,7 @@
 	"io"
 	"os"
 
-	"pcloud/api"
+	"github.com/giolekva/pcloud/api"
 )
 
 type ReadOnlyFileChunk struct {
diff --git a/chunk/in_memory.go b/chunk/in_memory.go
index ca7259c..b2199ee 100644
--- a/chunk/in_memory.go
+++ b/chunk/in_memory.go
@@ -5,7 +5,7 @@
 	"errors"
 	"io"
 
-	"pcloud/api"
+	"github.com/giolekva/pcloud/api"
 )
 
 type InMemoryChunk struct {
diff --git a/chunk/remote.go b/chunk/remote.go
index 0da0ad8..60aeb13 100644
--- a/chunk/remote.go
+++ b/chunk/remote.go
@@ -4,7 +4,7 @@
 	"context"
 	"io"
 
-	"pcloud/api"
+	"github.com/giolekva/pcloud/api"
 )
 
 type RemoteChunk struct {
diff --git a/chunk/replicator.go b/chunk/replicator.go
index fe49862..5fcabc7 100644
--- a/chunk/replicator.go
+++ b/chunk/replicator.go
@@ -6,7 +6,7 @@
 
 	"google.golang.org/grpc"
 
-	"pcloud/api"
+	"github.com/giolekva/pcloud/api"
 )
 
 type PrimaryReplicaChangeListener interface {
diff --git a/chunk/server.go b/chunk/server.go
index 1e7b534..c262509 100644
--- a/chunk/server.go
+++ b/chunk/server.go
@@ -7,7 +7,7 @@
 
 	"sync"
 
-	"pcloud/api"
+	"github.com/giolekva/pcloud/api"
 )
 
 type ChunkServer struct {
diff --git a/chunk/server_test.go b/chunk/server_test.go
index 2c6fb83..99a6427 100644
--- a/chunk/server_test.go
+++ b/chunk/server_test.go
@@ -5,7 +5,7 @@
 	"context"
 	"testing"
 
-	"pcloud/api"
+	"github.com/giolekva/pcloud/api"
 )
 
 func TestStoreChunk(t *testing.T) {