fix: rename packages

This commit is contained in:
2019-05-12 11:57:53 +02:00
parent d3c4ca2c72
commit c5233d578a
33 changed files with 59 additions and 73 deletions

View File

@ -4,9 +4,9 @@ import (
"fmt"
"time"
"git.cryptic.systems/fh-trier/go-flucky/pkg/types"
"github.com/MichaelS11/go-dht"
uuid "github.com/satori/go.uuid"
"github.com/volker-raschek/flucky/pkg/types"
)
type DHT11Sensor struct {

View File

@ -4,9 +4,9 @@ import (
"fmt"
"time"
"git.cryptic.systems/fh-trier/go-flucky/pkg/types"
"github.com/MichaelS11/go-dht"
uuid "github.com/satori/go.uuid"
"github.com/volker-raschek/flucky/pkg/types"
)
type DHT22Sensor struct {

View File

@ -4,8 +4,8 @@ import (
"fmt"
"time"
"git.cryptic.systems/fh-trier/go-flucky/pkg/types"
uuid "github.com/satori/go.uuid"
"github.com/volker-raschek/flucky/pkg/types"
"github.com/yryz/ds18b20"
)

View File

@ -3,9 +3,9 @@ package sensor
import (
"sync"
"git.cryptic.systems/fh-trier/go-flucky/pkg/internal/errutils"
"github.com/volker-raschek/flucky/pkg/internal/errutils"
"git.cryptic.systems/fh-trier/go-flucky/pkg/types"
"github.com/volker-raschek/flucky/pkg/types"
)
type HumiditySensor interface {