Skip to content

Commit 68bbf78

Browse files
committed
feat: Reorganize project structure to use packages directly from the root
1 parent b33f40e commit 68bbf78

26 files changed

+5
-5
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

pkg/cachelib/cache_test.go renamed to cachelib/cache_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"context"
55
"testing"
66

7-
"github.com/arturmon/multi-tier-caching/pkg/cachelib/mocks"
8-
databaseMock "github.com/arturmon/multi-tier-caching/pkg/storage/mocks"
7+
"github.com/arturmon/multi-tier-caching/cachelib/mocks"
8+
databaseMock "github.com/arturmon/multi-tier-caching/storage/mocks"
99
"github.com/stretchr/testify/assert"
1010
)
1111

pkg/cachelib/database.go renamed to cachelib/database.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"time"
66

7-
"github.com/arturmon/multi-tier-caching/pkg/storage"
7+
"github.com/arturmon/multi-tier-caching/storage"
88
)
99

1010
type DatabaseCache struct {
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)