diff options
| -rw-r--r-- | .github/workflows/update-deps.yaml | 2 | ||||
| -rw-r--r-- | emulated/emulated.go | 10 | ||||
| -rw-r--r-- | emulated/example/main.go | 12 | ||||
| -rw-r--r-- | example/main.go | 6 | ||||
| -rw-r--r-- | go.mod | 2 | ||||
| -rw-r--r-- | mqtt/node.go | 2 | ||||
| -rw-r--r-- | radio/radio.go | 2 | ||||
| -rw-r--r-- | transport/client.go | 2 | ||||
| -rw-r--r-- | transport/stream_conn_test.go | 2 | ||||
| -rw-r--r-- | util.go | 2 |
10 files changed, 21 insertions, 21 deletions
diff --git a/.github/workflows/update-deps.yaml b/.github/workflows/update-deps.yaml index 713efe0..3875789 100644 --- a/.github/workflows/update-deps.yaml +++ b/.github/workflows/update-deps.yaml @@ -4,7 +4,7 @@ env: on: workflow_dispatch: - schedule: +# schedule: # - cron: "0 14 * * 1" # 2pm cest, weekly on Monday jobs: diff --git a/emulated/emulated.go b/emulated/emulated.go index 27ab820..49a1150 100644 --- a/emulated/emulated.go +++ b/emulated/emulated.go @@ -4,11 +4,11 @@ import ( "context" "fmt" "github.com/charmbracelet/log" - "github.com/crypto-smoke/meshtastic-go" - pb "github.com/crypto-smoke/meshtastic-go/meshtastic" - "github.com/crypto-smoke/meshtastic-go/mqtt" - "github.com/crypto-smoke/meshtastic-go/radio" - "github.com/crypto-smoke/meshtastic-go/transport" + "github.com/meshnet-gophers/meshtastic-go" + pb "github.com/meshnet-gophers/meshtastic-go/meshtastic" + "github.com/meshnet-gophers/meshtastic-go/mqtt" + "github.com/meshnet-gophers/meshtastic-go/radio" + "github.com/meshnet-gophers/meshtastic-go/transport" "golang.org/x/sync/errgroup" "google.golang.org/protobuf/proto" "io" diff --git a/emulated/example/main.go b/emulated/example/main.go index 36b36c3..953820a 100644 --- a/emulated/example/main.go +++ b/emulated/example/main.go @@ -4,12 +4,12 @@ import ( "context" "fmt" "github.com/charmbracelet/log" - "github.com/crypto-smoke/meshtastic-go" - "github.com/crypto-smoke/meshtastic-go/emulated" - pb "github.com/crypto-smoke/meshtastic-go/meshtastic" - "github.com/crypto-smoke/meshtastic-go/mqtt" - "github.com/crypto-smoke/meshtastic-go/radio" - "github.com/crypto-smoke/meshtastic-go/transport" + "github.com/meshnet-gophers/meshtastic-go" + "github.com/meshnet-gophers/meshtastic-go/emulated" + pb "github.com/meshnet-gophers/meshtastic-go/meshtastic" + "github.com/meshnet-gophers/meshtastic-go/mqtt" + "github.com/meshnet-gophers/meshtastic-go/radio" + "github.com/meshnet-gophers/meshtastic-go/transport" "golang.org/x/sync/errgroup" "time" ) diff --git a/example/main.go b/example/main.go index 886ae92..f88d52d 100644 --- a/example/main.go +++ b/example/main.go @@ -3,9 +3,9 @@ package main import ( "context" "github.com/charmbracelet/log" - pb "github.com/crypto-smoke/meshtastic-go/meshtastic" - "github.com/crypto-smoke/meshtastic-go/transport" - "github.com/crypto-smoke/meshtastic-go/transport/serial" + pb "github.com/meshnet-gophers/meshtastic-go/meshtastic" + "github.com/meshnet-gophers/meshtastic-go/transport" + "github.com/meshnet-gophers/meshtastic-go/transport/serial" "google.golang.org/protobuf/proto" "os" "os/signal" @@ -1,4 +1,4 @@ -module github.com/crypto-smoke/meshtastic-go +module github.com/meshnet-gophers/meshtastic-go go 1.21 diff --git a/mqtt/node.go b/mqtt/node.go index fa5fdb7..085db0c 100644 --- a/mqtt/node.go +++ b/mqtt/node.go @@ -1,6 +1,6 @@ package mqtt -import meshtastic "github.com/crypto-smoke/meshtastic-go/meshtastic" +import meshtastic "github.com/meshnet-gophers/meshtastic-go/meshtastic" // Node implements a meshtastic node that connects only via MQTT type Node struct { diff --git a/radio/radio.go b/radio/radio.go index adabd0f..5cb1818 100644 --- a/radio/radio.go +++ b/radio/radio.go @@ -4,7 +4,7 @@ import ( "encoding/base64" "errors" "fmt" - generated "github.com/crypto-smoke/meshtastic-go/meshtastic" + generated "github.com/meshnet-gophers/meshtastic-go/meshtastic" "google.golang.org/protobuf/proto" ) diff --git a/transport/client.go b/transport/client.go index 214ecf0..9edfcc9 100644 --- a/transport/client.go +++ b/transport/client.go @@ -4,7 +4,7 @@ import ( "context" "errors" "fmt" - meshtastic "github.com/crypto-smoke/meshtastic-go/meshtastic" + meshtastic "github.com/meshnet-gophers/meshtastic-go/meshtastic" "google.golang.org/protobuf/proto" "log/slog" "math/rand" diff --git a/transport/stream_conn_test.go b/transport/stream_conn_test.go index 6b044cf..6b6cf71 100644 --- a/transport/stream_conn_test.go +++ b/transport/stream_conn_test.go @@ -2,7 +2,7 @@ package transport import ( "bytes" - pb "github.com/crypto-smoke/meshtastic-go/meshtastic" + pb "github.com/meshnet-gophers/meshtastic-go/meshtastic" "github.com/stretchr/testify/require" "golang.org/x/sync/errgroup" "google.golang.org/protobuf/proto" @@ -1,7 +1,7 @@ package meshtastic import ( - pbuf "github.com/crypto-smoke/meshtastic-go/meshtastic" + pbuf "github.com/meshnet-gophers/meshtastic-go/meshtastic" ) type Node struct { |
