Skip to content

Commit

Permalink
refactor: remove internal/pkg directory
Browse files Browse the repository at this point in the history
  • Loading branch information
torives committed Oct 26, 2023
1 parent a6da9f4 commit be726f4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cmd/cartesi-rollups-node/validator.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
package main

import (
"github.com/cartesi/rollups-node/internal/pkg/services"
"github.com/cartesi/rollups-node/internal/services"
"github.com/spf13/cobra"
)

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"os/exec"
"syscall"

"github.com/cartesi/rollups-node/internal/pkg/logger"
"github.com/cartesi/rollups-node/internal/logger"
)

const (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"testing"
"time"

"github.com/cartesi/rollups-node/internal/pkg/logger"
"github.com/cartesi/rollups-node/internal/logger"
)

func setup() {
Expand Down Expand Up @@ -46,7 +46,7 @@ func TestGraphQLService(t *testing.T) {
}

func setRustBinariesPath() {
rustBinPath, _ := filepath.Abs("../../../offchain/target/debug")
rustBinPath, _ := filepath.Abs("../../offchain/target/debug")
os.Setenv("PATH", os.Getenv("PATH")+":"+rustBinPath)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"fmt"
"time"

"github.com/cartesi/rollups-node/internal/pkg/logger"
"github.com/cartesi/rollups-node/internal/logger"
)

// A service that runs in the background endlessly until the context is canceled
Expand Down

0 comments on commit be726f4

Please sign in to comment.