From bcb15b75e81fb8df6ab2de31d8c8b45c0a8548aa Mon Sep 17 00:00:00 2001 From: Rob Watson Date: Wed, 13 Jul 2022 19:01:08 +0200 Subject: [PATCH] Rename to solar-toolkit --- README.md | 4 ++-- go.mod | 2 +- inverter/et.go | 2 +- inverter/et_test.go | 2 +- main.go | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) 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