fix: migrate to gitea

This commit is contained in:
2020-06-10 21:13:05 +02:00
parent 940e04371c
commit a49546bd6d
20 changed files with 61 additions and 55 deletions

View File

@ -9,8 +9,8 @@ import (
"github.com/d2r2/go-logger"
uuid "github.com/satori/go.uuid"
"github.com/volker-raschek/flucky/pkg/internal/format"
"github.com/volker-raschek/flucky/pkg/types"
"git.cryptic.systems/volker.raschek/flucky/pkg/internal/format"
"git.cryptic.systems/volker.raschek/flucky/pkg/types"
)
// BME280 is a sensor to measure humidity and temperature.

View File

@ -4,10 +4,10 @@ import (
"fmt"
"sync"
"git.cryptic.systems/volker.raschek/flucky/pkg/internal/format"
"git.cryptic.systems/volker.raschek/flucky/pkg/types"
"github.com/go-flucky/go-dht"
uuid "github.com/satori/go.uuid"
"github.com/volker-raschek/flucky/pkg/internal/format"
"github.com/volker-raschek/flucky/pkg/types"
)
// DHT11 is a sensor to measure humidity and temperature.

View File

@ -4,10 +4,10 @@ import (
"fmt"
"sync"
"git.cryptic.systems/volker.raschek/flucky/pkg/internal/format"
"git.cryptic.systems/volker.raschek/flucky/pkg/types"
"github.com/go-flucky/go-dht"
uuid "github.com/satori/go.uuid"
"github.com/volker-raschek/flucky/pkg/internal/format"
"github.com/volker-raschek/flucky/pkg/types"
)
// DHT22 is a sensor to measure humidity and temperature.

View File

@ -9,9 +9,9 @@ import (
"strings"
"sync"
"git.cryptic.systems/volker.raschek/flucky/pkg/internal/format"
"git.cryptic.systems/volker.raschek/flucky/pkg/types"
uuid "github.com/satori/go.uuid"
"github.com/volker-raschek/flucky/pkg/internal/format"
"github.com/volker-raschek/flucky/pkg/types"
)
// DS18B20 is a sensor to measure humidity and temperature.

View File

@ -1,8 +1,9 @@
package sensor
import (
"github.com/volker-raschek/flucky/pkg/types"
"time"
"git.cryptic.systems/volker.raschek/flucky/pkg/types"
)
type Sensor interface {

View File

@ -4,7 +4,7 @@ import (
"errors"
"sync"
"github.com/volker-raschek/flucky/pkg/types"
"git.cryptic.systems/volker.raschek/flucky/pkg/types"
)
var (