Skip to content

Commit

Permalink
Make impl internal too
Browse files Browse the repository at this point in the history
They are not supposed to be directly called by outside users.
  • Loading branch information
Eugene Kim committed Dec 18, 2018
1 parent 9bff915 commit 653fb36
Show file tree
Hide file tree
Showing 8 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package libraptorq

import (
"errors"
"github.com/harmony-one/go-raptorq/pkg/impl/libraptorq/swig"
"github.com/harmony-one/go-raptorq/internal/impl/libraptorq/swig"
"github.com/harmony-one/go-raptorq/internal/readyblockchan"
"github.com/harmony-one/go-raptorq/pkg/raptorq"
"runtime"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package libraptorq

import (
"errors"
"github.com/harmony-one/go-raptorq/pkg/impl/libraptorq/swig"
"github.com/harmony-one/go-raptorq/internal/impl/libraptorq/swig"
"github.com/harmony-one/go-raptorq/pkg/raptorq"
"runtime"
)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion pkg/defaults/default.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package defaults

import "github.com/harmony-one/go-raptorq/pkg/raptorq"
import "github.com/harmony-one/go-raptorq/pkg/impl/libraptorq"
import "github.com/harmony-one/go-raptorq/internal/impl/libraptorq"

func DefaultEncoderFactory() raptorq.EncoderFactory {
return &libraptorq.EncoderFactory{}
Expand Down

0 comments on commit 653fb36

Please sign in to comment.