Skip to content

Commit

Permalink
fixing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanV2 committed Dec 28, 2024
1 parent 060f889 commit ecf47e9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/cpu/cache.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package cpu

import env "github.com/daanv2/go-optimal/environment"
import env "github.com/daanv2/go-optimal/pkg/environment"

// CacheKind is a enum that represents the kind of cache.
type CacheKind int
Expand Down
2 changes: 1 addition & 1 deletion pkg/cpu/cpu.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cpu

import (
env "github.com/daanv2/go-optimal/environment"
env "github.com/daanv2/go-optimal/pkg/environment"
"github.com/klauspost/cpuid/v2"
)

Expand Down
2 changes: 1 addition & 1 deletion settings.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package optimal

import (
env "github.com/daanv2/go-optimal/environment"
"github.com/daanv2/go-optimal/pkg/cpu"
env "github.com/daanv2/go-optimal/pkg/environment"
)

func init() {
Expand Down

0 comments on commit ecf47e9

Please sign in to comment.