diff --git a/pkg/cinodefs/cinodefs_interface_bb_test.go b/pkg/cinodefs/cinodefs_interface_bb_test.go index 5f3d936..758fb81 100644 --- a/pkg/cinodefs/cinodefs_interface_bb_test.go +++ b/pkg/cinodefs/cinodefs_interface_bb_test.go @@ -30,7 +30,7 @@ import ( "github.com/cinode/go/pkg/blenc" "github.com/cinode/go/pkg/cinodefs" - "github.com/cinode/go/pkg/cinodefs/internal/protobuf" + "github.com/cinode/go/pkg/cinodefs/protobuf" "github.com/cinode/go/pkg/common" "github.com/cinode/go/pkg/datastore" "github.com/cinode/go/pkg/internal/blobtypes/dynamiclink" diff --git a/pkg/cinodefs/context.go b/pkg/cinodefs/context.go index 99576ee..01cfdb8 100644 --- a/pkg/cinodefs/context.go +++ b/pkg/cinodefs/context.go @@ -24,7 +24,7 @@ import ( "io" "github.com/cinode/go/pkg/blenc" - "github.com/cinode/go/pkg/cinodefs/internal/protobuf" + "github.com/cinode/go/pkg/cinodefs/protobuf" "github.com/cinode/go/pkg/common" "google.golang.org/protobuf/proto" ) diff --git a/pkg/cinodefs/entrypoint.go b/pkg/cinodefs/entrypoint.go index adae7cb..e0625b4 100644 --- a/pkg/cinodefs/entrypoint.go +++ b/pkg/cinodefs/entrypoint.go @@ -21,7 +21,7 @@ import ( "fmt" "github.com/cinode/go/pkg/blobtypes" - "github.com/cinode/go/pkg/cinodefs/internal/protobuf" + "github.com/cinode/go/pkg/cinodefs/protobuf" "github.com/cinode/go/pkg/common" "github.com/cinode/go/pkg/utilities/golang" "github.com/jbenet/go-base58" diff --git a/pkg/cinodefs/entrypoint_bb_test.go b/pkg/cinodefs/entrypoint_bb_test.go index cebe0e0..59e03b9 100644 --- a/pkg/cinodefs/entrypoint_bb_test.go +++ b/pkg/cinodefs/entrypoint_bb_test.go @@ -20,7 +20,7 @@ import ( "testing" "github.com/cinode/go/pkg/cinodefs" - "github.com/cinode/go/pkg/cinodefs/internal/protobuf" + "github.com/cinode/go/pkg/cinodefs/protobuf" "github.com/cinode/go/testvectors/testblobs" "github.com/stretchr/testify/require" "google.golang.org/protobuf/proto" diff --git a/pkg/cinodefs/node_directory.go b/pkg/cinodefs/node_directory.go index 8ba8c1e..6a1cf3e 100644 --- a/pkg/cinodefs/node_directory.go +++ b/pkg/cinodefs/node_directory.go @@ -21,7 +21,7 @@ import ( "sort" "github.com/cinode/go/pkg/blobtypes" - "github.com/cinode/go/pkg/cinodefs/internal/protobuf" + "github.com/cinode/go/pkg/cinodefs/protobuf" "github.com/cinode/go/pkg/utilities/golang" ) diff --git a/pkg/cinodefs/node_unloaded.go b/pkg/cinodefs/node_unloaded.go index cd39294..6ddd088 100644 --- a/pkg/cinodefs/node_unloaded.go +++ b/pkg/cinodefs/node_unloaded.go @@ -20,7 +20,7 @@ import ( "context" "fmt" - "github.com/cinode/go/pkg/cinodefs/internal/protobuf" + "github.com/cinode/go/pkg/cinodefs/protobuf" ) type nodeUnloaded struct { diff --git a/pkg/cinodefs/internal/protobuf/protobuf.pb.go b/pkg/cinodefs/protobuf/protobuf.pb.go similarity index 100% rename from pkg/cinodefs/internal/protobuf/protobuf.pb.go rename to pkg/cinodefs/protobuf/protobuf.pb.go diff --git a/pkg/cinodefs/internal/protobuf/protobuf.proto b/pkg/cinodefs/protobuf/protobuf.proto similarity index 100% rename from pkg/cinodefs/internal/protobuf/protobuf.proto rename to pkg/cinodefs/protobuf/protobuf.proto diff --git a/pkg/cinodefs/writerinfo.go b/pkg/cinodefs/writerinfo.go index e9e562c..03a65ff 100644 --- a/pkg/cinodefs/writerinfo.go +++ b/pkg/cinodefs/writerinfo.go @@ -20,7 +20,7 @@ import ( "errors" "fmt" - "github.com/cinode/go/pkg/cinodefs/internal/protobuf" + "github.com/cinode/go/pkg/cinodefs/protobuf" "github.com/cinode/go/pkg/common" "github.com/cinode/go/pkg/utilities/golang" "github.com/jbenet/go-base58"