fix: rename packages
This commit is contained in:
parent
d3c4ca2c72
commit
c5233d578a
20
Makefile
20
Makefile
@ -2,17 +2,10 @@
|
|||||||
# UID or GID is the UNIX user ID or group ID of the user who executes
|
# UID or GID is the UNIX user ID or group ID of the user who executes
|
||||||
# make. If the UID or GID is not passed as a make variable, an attempt
|
# make. If the UID or GID is not passed as a make variable, an attempt
|
||||||
# is made to determine it.
|
# is made to determine it.
|
||||||
UID?=$(shell id -u)
|
UID?=$(shell id --user)
|
||||||
GID?=$(shell id -g)
|
GID?=$(shell id --group)
|
||||||
|
|
||||||
# VERSION
|
# VERSION
|
||||||
# UID/GID
|
|
||||||
# UID or GID is the UNIX user ID or group ID of the user who executes
|
|
||||||
# make. If the UID or GID is not passed as a make variable, an attempt
|
|
||||||
# is made to determine it.
|
|
||||||
UID?=$(shell id -u)
|
|
||||||
GID?=$(shell id -g)
|
|
||||||
|
|
||||||
# If no version is specified as a parameter of make, the last git hash
|
# If no version is specified as a parameter of make, the last git hash
|
||||||
# value is taken.
|
# value is taken.
|
||||||
VERSION:=$(or ${TRAVIS_TAG}, ${TRAVIS_TAG}, $(shell git rev-parse --short HEAD)-git)
|
VERSION:=$(or ${TRAVIS_TAG}, ${TRAVIS_TAG}, $(shell git rev-parse --short HEAD)-git)
|
||||||
@ -25,15 +18,10 @@ build:
|
|||||||
GOOS=${GOOS} \
|
GOOS=${GOOS} \
|
||||||
GOARCH=${GOARCH} \
|
GOARCH=${GOARCH} \
|
||||||
go build -ldflags "-X main.version=${VERSION}"
|
go build -ldflags "-X main.version=${VERSION}"
|
||||||
|
chown -R ${UID}:${GID} *
|
||||||
|
|
||||||
docker-build:
|
docker-build:
|
||||||
docker run \
|
docker run \
|
||||||
--volume ${PWD}:/workspace \
|
--volume ${PWD}:/workspace \
|
||||||
volkerraschek/build-image:1.0.0 \
|
volkerraschek/build-image:1.0.0 \
|
||||||
make build VERSION=${VERSION} GOOS=${GOOS} GOARCH=${GOARCH}
|
make build UID=${UID} GID=${GID} VERSION=${VERSION} GOOS=${GOOS} GOARCH=${GOARCH}
|
||||||
|
|
||||||
docker-sanitized:
|
|
||||||
docker run \
|
|
||||||
--volume ${PWD}:/workspace \
|
|
||||||
volkerraschek/build-image:1.0.0 \
|
|
||||||
chown ${UID}:${GID} -R /workspace
|
|
||||||
|
14
cmd/cmd.go
14
cmd/cmd.go
@ -5,16 +5,16 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
lg "git.cryptic.systems/fh-trier/go-flucky/cmd/logger"
|
lg "github.com/volker-raschek/flucky/cmd/logger"
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/cmd/remote"
|
"github.com/volker-raschek/flucky/cmd/remote"
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/cmd/sensor"
|
"github.com/volker-raschek/flucky/cmd/sensor"
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/cmd/temperature"
|
"github.com/volker-raschek/flucky/cmd/temperature"
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/logger"
|
"github.com/volker-raschek/flucky/pkg/logger"
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/types"
|
"github.com/volker-raschek/flucky/pkg/types"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
||||||
uuid "github.com/satori/go.uuid"
|
uuid "github.com/satori/go.uuid"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
var cfg string
|
var cfg string
|
||||||
|
@ -3,8 +3,8 @@ package humidity
|
|||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/humidity"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/humidity"
|
||||||
)
|
)
|
||||||
|
|
||||||
var follow, push bool
|
var follow, push bool
|
||||||
|
@ -3,10 +3,10 @@ package logger
|
|||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/logger"
|
"github.com/volker-raschek/flucky/pkg/logger"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
var enabled bool
|
var enabled bool
|
||||||
|
@ -4,9 +4,9 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/cli"
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/cli"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
var quiet bool
|
var quiet bool
|
||||||
|
@ -3,8 +3,8 @@ package logger
|
|||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
var rmLoggerCmd = &cobra.Command{
|
var rmLoggerCmd = &cobra.Command{
|
||||||
|
@ -3,8 +3,8 @@ package remote
|
|||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
var enabled bool
|
var enabled bool
|
||||||
|
@ -3,8 +3,8 @@ package remote
|
|||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
var disableRemoteCmd = &cobra.Command{
|
var disableRemoteCmd = &cobra.Command{
|
||||||
|
@ -3,8 +3,8 @@ package remote
|
|||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
var enableRemoteCmd = &cobra.Command{
|
var enableRemoteCmd = &cobra.Command{
|
||||||
|
@ -4,9 +4,9 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/cli"
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/cli"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
var quiet bool
|
var quiet bool
|
||||||
|
@ -3,8 +3,8 @@ package remote
|
|||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
var rmRemoteCmd = &cobra.Command{
|
var rmRemoteCmd = &cobra.Command{
|
||||||
|
@ -3,8 +3,8 @@ package remote
|
|||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
var renameRemoteCmd = &cobra.Command{
|
var renameRemoteCmd = &cobra.Command{
|
||||||
|
@ -4,9 +4,9 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/types"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
var enabled bool
|
var enabled bool
|
||||||
|
@ -3,8 +3,8 @@ package sensor
|
|||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
var disableSensorCmd = &cobra.Command{
|
var disableSensorCmd = &cobra.Command{
|
||||||
|
@ -3,8 +3,8 @@ package sensor
|
|||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
var enableSensorCmd = &cobra.Command{
|
var enableSensorCmd = &cobra.Command{
|
||||||
|
@ -4,9 +4,9 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/cli"
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/cli"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
var listSensorCmd = &cobra.Command{
|
var listSensorCmd = &cobra.Command{
|
||||||
|
@ -4,8 +4,8 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
var renameSensorCmd = &cobra.Command{
|
var renameSensorCmd = &cobra.Command{
|
||||||
|
@ -3,8 +3,8 @@ package sensor
|
|||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
var rmSensorCmd = &cobra.Command{
|
var rmSensorCmd = &cobra.Command{
|
||||||
|
@ -5,9 +5,9 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/cli"
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/cli"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
var logTemperatureCmd = &cobra.Command{
|
var logTemperatureCmd = &cobra.Command{
|
||||||
|
@ -5,10 +5,10 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/cli"
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/sensor"
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/cli"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/sensor"
|
||||||
)
|
)
|
||||||
|
|
||||||
var logs bool
|
var logs bool
|
||||||
|
2
go.mod
2
go.mod
@ -3,8 +3,6 @@ module github.com/volker-raschek/flucky
|
|||||||
go 1.12
|
go 1.12
|
||||||
|
|
||||||
require (
|
require (
|
||||||
git.cryptic.systems/fh-trier/go-flucky v0.0.0-20181207215028-500d1a5823bf
|
|
||||||
git.cryptic.systems/fh-trier/go-flucky-server v0.0.0-20181230151231-f6edecea614d // indirect
|
|
||||||
github.com/MichaelS11/go-dht v0.0.0-20181004212404-be44b9ee7fec
|
github.com/MichaelS11/go-dht v0.0.0-20181004212404-be44b9ee7fec
|
||||||
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
||||||
github.com/kr/pretty v0.1.0 // indirect
|
github.com/kr/pretty v0.1.0 // indirect
|
||||||
|
8
go.sum
8
go.sum
@ -1,12 +1,11 @@
|
|||||||
git.cryptic.systems/fh-trier/go-flucky v0.0.0-20181207215028-500d1a5823bf h1:WM8TvicHgWrAn+CN0z5u2lkX0L4ejtK+rUckoucNad8=
|
|
||||||
git.cryptic.systems/fh-trier/go-flucky v0.0.0-20181207215028-500d1a5823bf/go.mod h1:yb5tRWqyFQ3CSgzOWTrvedu7QvpB+Z33+5xBR53ApHA=
|
|
||||||
git.cryptic.systems/fh-trier/go-flucky-server v0.0.0-20181230151231-f6edecea614d h1:F6PfcsO3KTND6nS+W1JIyQTZP0ELkpO4ZtsJLM1AkJk=
|
|
||||||
git.cryptic.systems/fh-trier/go-flucky-server v0.0.0-20181230151231-f6edecea614d/go.mod h1:WsdKW/cKXJboXNZduOxhD6y7NyhYN5E8eH6Jj5nDNNE=
|
|
||||||
github.com/MichaelS11/go-dht v0.0.0-20181004212404-be44b9ee7fec h1:xMo0OOokExQqY/MRsTz6azUwy0udvlqhkJwQ5jZ6eN4=
|
github.com/MichaelS11/go-dht v0.0.0-20181004212404-be44b9ee7fec h1:xMo0OOokExQqY/MRsTz6azUwy0udvlqhkJwQ5jZ6eN4=
|
||||||
github.com/MichaelS11/go-dht v0.0.0-20181004212404-be44b9ee7fec/go.mod h1:NTx2rUi8kfs8Qk9Fotoyf/3lQnKBdc2mhyZqO4AhVLI=
|
github.com/MichaelS11/go-dht v0.0.0-20181004212404-be44b9ee7fec/go.mod h1:NTx2rUi8kfs8Qk9Fotoyf/3lQnKBdc2mhyZqO4AhVLI=
|
||||||
|
github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=
|
||||||
github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
|
github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
|
||||||
|
github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=
|
||||||
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
|
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
|
||||||
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
|
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
|
||||||
|
github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
|
||||||
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
|
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
|
||||||
github.com/satori/go.uuid v1.2.0 h1:0uYX9dsZ2yD7q2RtLRtPSdGDWzjeM3TbMJP9utgA0ww=
|
github.com/satori/go.uuid v1.2.0 h1:0uYX9dsZ2yD7q2RtLRtPSdGDWzjeM3TbMJP9utgA0ww=
|
||||||
github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0=
|
github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0=
|
||||||
@ -16,6 +15,7 @@ github.com/spf13/pflag v1.0.3 h1:zPAT6CGy6wXeQ7NtTnaTerfKOsV6V6F8agHXFiazDkg=
|
|||||||
github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
|
github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
|
||||||
github.com/yryz/ds18b20 v0.0.0-20180211073435-3cf383a40624 h1:bePzgtpuLSl+F9aacwuaquuoOyKfMKuJORq2CvPPJK4=
|
github.com/yryz/ds18b20 v0.0.0-20180211073435-3cf383a40624 h1:bePzgtpuLSl+F9aacwuaquuoOyKfMKuJORq2CvPPJK4=
|
||||||
github.com/yryz/ds18b20 v0.0.0-20180211073435-3cf383a40624/go.mod h1:MqFju5qeLDFh+S9PqxYT7TEla8xeW7bgGr/69q3oki0=
|
github.com/yryz/ds18b20 v0.0.0-20180211073435-3cf383a40624/go.mod h1:MqFju5qeLDFh+S9PqxYT7TEla8xeW7bgGr/69q3oki0=
|
||||||
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=
|
||||||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
periph.io/x/periph v3.4.0+incompatible h1:5gzxE4ryPq52cdqSw0mErR6pyJK8cBF2qdUAcOWh0bo=
|
periph.io/x/periph v3.4.0+incompatible h1:5gzxE4ryPq52cdqSw0mErR6pyJK8cBF2qdUAcOWh0bo=
|
||||||
periph.io/x/periph v3.4.0+incompatible/go.mod h1:EWr+FCIU2dBWz5/wSWeiIUJTriYv9v2j2ENBmgYyy7Y=
|
periph.io/x/periph v3.4.0+incompatible/go.mod h1:EWr+FCIU2dBWz5/wSWeiIUJTriYv9v2j2ENBmgYyy7Y=
|
||||||
|
2
main.go
2
main.go
@ -5,7 +5,7 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"os/user"
|
"os/user"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/cmd"
|
"github.com/volker-raschek/flucky/cmd"
|
||||||
)
|
)
|
||||||
|
|
||||||
var version string
|
var version string
|
||||||
|
@ -5,12 +5,12 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"text/tabwriter"
|
"text/tabwriter"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/logger"
|
"github.com/volker-raschek/flucky/pkg/logger"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/internal/temperature"
|
"github.com/volker-raschek/flucky/pkg/internal/temperature"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/types"
|
"github.com/volker-raschek/flucky/pkg/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
// PrintHumidities displays a list of humidities
|
// PrintHumidities displays a list of humidities
|
||||||
|
@ -7,12 +7,12 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/logger"
|
"github.com/volker-raschek/flucky/pkg/logger"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/sensor"
|
"github.com/volker-raschek/flucky/pkg/sensor"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/types"
|
|
||||||
uuid "github.com/satori/go.uuid"
|
uuid "github.com/satori/go.uuid"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
// FluckyConfig dasd
|
// FluckyConfig dasd
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package config
|
package config
|
||||||
|
|
||||||
import "git.cryptic.systems/fh-trier/go-flucky/pkg/types"
|
import "github.com/volker-raschek/flucky/pkg/types"
|
||||||
|
|
||||||
// Remote ...
|
// Remote ...
|
||||||
type Remote struct {
|
type Remote struct {
|
||||||
|
@ -4,8 +4,8 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/config"
|
"github.com/volker-raschek/flucky/pkg/config"
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/types"
|
"github.com/volker-raschek/flucky/pkg/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
// GetSensorsByTemperatures returns commulated list of sensors by temperature values
|
// GetSensorsByTemperatures returns commulated list of sensors by temperature values
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/types"
|
"github.com/volker-raschek/flucky/pkg/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type FileLogger struct {
|
type FileLogger struct {
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/types"
|
"github.com/volker-raschek/flucky/pkg/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Logger interface {
|
type Logger interface {
|
||||||
|
@ -4,9 +4,9 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/types"
|
|
||||||
"github.com/MichaelS11/go-dht"
|
"github.com/MichaelS11/go-dht"
|
||||||
uuid "github.com/satori/go.uuid"
|
uuid "github.com/satori/go.uuid"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type DHT11Sensor struct {
|
type DHT11Sensor struct {
|
||||||
|
@ -4,9 +4,9 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/types"
|
|
||||||
"github.com/MichaelS11/go-dht"
|
"github.com/MichaelS11/go-dht"
|
||||||
uuid "github.com/satori/go.uuid"
|
uuid "github.com/satori/go.uuid"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
type DHT22Sensor struct {
|
type DHT22Sensor struct {
|
||||||
|
@ -4,8 +4,8 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.cryptic.systems/fh-trier/go-flucky/pkg/types"
|
|
||||||
uuid "github.com/satori/go.uuid"
|
uuid "github.com/satori/go.uuid"
|
||||||
|
"github.com/volker-raschek/flucky/pkg/types"
|
||||||
"github.com/yryz/ds18b20"
|
"github.com/yryz/ds18b20"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -3,9 +3,9 @@ package sensor
|
|||||||
import (
|
import (
|
||||||
"sync"
|
"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 {
|
type HumiditySensor interface {
|
||||||
|
Loading…
Reference in New Issue
Block a user