Rename to solar-toolkit
This commit is contained in:
parent
a103e2c4d8
commit
bcb15b75e8
|
@ -1,3 +1,3 @@
|
||||||
# goodwe-go
|
# solar-toolkit
|
||||||
|
|
||||||
A small project to read data from a Goodwe solar inverter using Go. Based on https://pypi.org/project/goodwe/.
|
A side project to collect, transport and store data from a Goodwe solar inverter.
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
||||||
module git.netflux.io/rob/goodwe-go
|
module git.netflux.io/rob/solar-toolkit
|
||||||
|
|
||||||
go 1.18
|
go 1.18
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.netflux.io/rob/goodwe-go/command"
|
"git.netflux.io/rob/solar-toolkit/command"
|
||||||
)
|
)
|
||||||
|
|
||||||
// The timezone used to parse timestamps.
|
// The timezone used to parse timestamps.
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.netflux.io/rob/goodwe-go/inverter"
|
"git.netflux.io/rob/solar-toolkit/inverter"
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue