Rename to solar-toolkit

This commit is contained in:
Rob Watson 2022-07-13 19:01:08 +02:00
parent a103e2c4d8
commit bcb15b75e8
5 changed files with 6 additions and 6 deletions

View File

@ -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
View File

@ -1,4 +1,4 @@
module git.netflux.io/rob/goodwe-go module git.netflux.io/rob/solar-toolkit
go 1.18 go 1.18

View File

@ -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.

View File

@ -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"
) )

View File

@ -9,7 +9,7 @@ import (
"os" "os"
"time" "time"
"git.netflux.io/rob/goodwe-go/inverter" "git.netflux.io/rob/solar-toolkit/inverter"
) )
const commandTimeout = time.Second * 5 const commandTimeout = time.Second * 5