Changed the naming of mk2if to mk2driver

This commit is contained in:
Nicholas Thompson
2019-03-10 11:48:56 +02:00
committed by ncthompson
parent 9236d6fa86
commit d02de285d9
10 changed files with 35 additions and 33 deletions

View File

@@ -38,7 +38,7 @@ import (
"net/http"
"github.com/diebietse/invertergui/frontend"
"github.com/diebietse/invertergui/mk2if"
"github.com/diebietse/invertergui/mk2driver"
"github.com/diebietse/invertergui/webgui"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/tarm/serial"
@@ -73,7 +73,7 @@ func main() {
}
}
defer p.Close()
mk2, err := mk2if.NewMk2Connection(p)
mk2, err := mk2driver.NewMk2Connection(p)
if err != nil {
panic(err)
}