Skip to content

Commit

Permalink
feat: move internal/flow under pkg/
Browse files Browse the repository at this point in the history
  • Loading branch information
buraksezer committed Nov 19, 2020
1 parent 5049f65 commit 818b143
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion internal/discovery/discovery.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"time"

"github.com/buraksezer/olric/config"
"github.com/buraksezer/olric/internal/flog"
"github.com/buraksezer/olric/pkg/flog"
"github.com/buraksezer/olric/pkg/service_discovery"
"github.com/hashicorp/memberlist"
"github.com/vmihailenco/msgpack"
Expand Down
2 changes: 1 addition & 1 deletion internal/transport/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import (
"time"

"github.com/buraksezer/olric/internal/bufpool"
"github.com/buraksezer/olric/internal/flog"
"github.com/buraksezer/olric/internal/protocol"
"github.com/buraksezer/olric/pkg/flog"
"github.com/hashicorp/go-multierror"
"github.com/pkg/errors"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/transport/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import (
"testing"
"time"

"github.com/buraksezer/olric/internal/flog"
"github.com/buraksezer/olric/internal/protocol"
"github.com/buraksezer/olric/pkg/flog"
)

func dispatcher(w, _ protocol.EncodeDecoder) {
Expand Down
2 changes: 1 addition & 1 deletion olric.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ import (
"github.com/buraksezer/olric/hasher"
"github.com/buraksezer/olric/internal/bufpool"
"github.com/buraksezer/olric/internal/discovery"
"github.com/buraksezer/olric/internal/flog"
"github.com/buraksezer/olric/internal/locker"
"github.com/buraksezer/olric/internal/protocol"
"github.com/buraksezer/olric/internal/storage"
"github.com/buraksezer/olric/internal/transport"
"github.com/buraksezer/olric/pkg/flog"
"github.com/buraksezer/olric/serializer"
"github.com/hashicorp/go-multierror"
"github.com/hashicorp/logutils"
Expand Down
File renamed without changes.

0 comments on commit 818b143

Please sign in to comment.