Skip to content

Commit

Permalink
Fix lib
Browse files Browse the repository at this point in the history
  • Loading branch information
johnfercher committed Aug 30, 2023
1 parent 4b268ee commit c6f694f
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module talescoder/m/v2
module talescoder

go 1.20

Expand Down
2 changes: 1 addition & 1 deletion mocks/slab.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package mocks

import "talescoder/m/v2/pkg/models"
import "talescoder/pkg/models"

func CreateTaleSpireSlab() *models.Slab {
return &models.Slab{
Expand Down
8 changes: 4 additions & 4 deletions pkg/decoder/decoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package decoder

import (
"bufio"
"talescoder/m/v2/internal/axisadapter"
"talescoder/m/v2/internal/bytecompressor"
"talescoder/m/v2/internal/byteparser"
"talescoder/m/v2/pkg/models"
"talescoder/internal/axisadapter"
"talescoder/internal/bytecompressor"
"talescoder/internal/byteparser"
"talescoder/pkg/models"
)

type Decoder interface {
Expand Down
4 changes: 2 additions & 2 deletions pkg/decoder/decoder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"talescoder/m/v2/internal/bytecompressor"
"talescoder/m/v2/mocks"
"talescoder/internal/bytecompressor"
"talescoder/mocks"
"testing"
)

Expand Down
8 changes: 4 additions & 4 deletions pkg/encoder/encoder.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package encoder

import (
"talescoder/m/v2/internal/axisadapter"
"talescoder/m/v2/internal/bytecompressor"
"talescoder/m/v2/internal/byteparser"
"talescoder/m/v2/pkg/models"
"talescoder/internal/axisadapter"
"talescoder/internal/bytecompressor"
"talescoder/internal/byteparser"
"talescoder/pkg/models"
)

type Encoder interface {
Expand Down
4 changes: 2 additions & 2 deletions pkg/encoder/encoder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package encoder
import (
"fmt"
"github.com/stretchr/testify/assert"
"talescoder/m/v2/internal/bytecompressor"
"talescoder/m/v2/mocks"
"talescoder/internal/bytecompressor"
"talescoder/mocks"
"testing"
)

Expand Down

0 comments on commit c6f694f

Please sign in to comment.