diff --git a/README.md b/README.md index 345de5a..81c885a 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/go.mod b/go.mod index f571435..840e9ea 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module git.netflux.io/rob/goodwe-go +module git.netflux.io/rob/solar-toolkit go 1.18 diff --git a/inverter/et.go b/inverter/et.go index fd4b931..97c0109 100644 --- a/inverter/et.go +++ b/inverter/et.go @@ -10,7 +10,7 @@ import ( "strings" "time" - "git.netflux.io/rob/goodwe-go/command" + "git.netflux.io/rob/solar-toolkit/command" ) // The timezone used to parse timestamps. diff --git a/inverter/et_test.go b/inverter/et_test.go index 4857352..4f39dc0 100644 --- a/inverter/et_test.go +++ b/inverter/et_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "git.netflux.io/rob/goodwe-go/inverter" + "git.netflux.io/rob/solar-toolkit/inverter" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/main.go b/main.go index a2215ad..7900857 100644 --- a/main.go +++ b/main.go @@ -9,7 +9,7 @@ import ( "os" "time" - "git.netflux.io/rob/goodwe-go/inverter" + "git.netflux.io/rob/solar-toolkit/inverter" ) const commandTimeout = time.Second * 5