Skip to content

Commit f5390a7

Browse files
committed
WIP gosmc
1 parent 2a1d11b commit f5390a7

File tree

5 files changed

+4
-7
lines changed

5 files changed

+4
-7
lines changed

go.mod

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ go 1.25
44

55
require (
66
github.com/fvbommel/sortorder v1.1.0
7-
github.com/panotza/gosmc v1.0.0
87
github.com/spf13/cobra v1.10.2
98
)
109

@@ -25,5 +24,3 @@ require (
2524
github.com/stretchr/testify v1.11.1
2625
golang.org/x/sys v0.39.0 // indirect
2726
)
28-
29-
replace github.com/panotza/gosmc => ./gosmc

gosmc/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/panotza/gosmc
1+
module github.com/dkorunic/iSMC/gosmc
22

33
go 1.25

smc/conv.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"math"
2323
"strings"
2424

25-
"github.com/panotza/gosmc"
25+
"github.com/dkorunic/iSMC/gosmc"
2626
)
2727

2828
// FPConv type used for AppleFPConv map.

smc/get.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package smc
1919
import (
2020
"fmt"
2121

22-
"github.com/panotza/gosmc"
22+
"github.com/dkorunic/iSMC/gosmc"
2323
)
2424

2525
// getKeyFloat32 returns float32 value for a given SMC key.

smc/smc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"strconv"
2424
"strings"
2525

26-
"github.com/panotza/gosmc"
26+
"github.com/dkorunic/iSMC/gosmc"
2727
)
2828

2929
const (

0 commit comments

Comments
 (0)