diff options
| author | Smoke <[email protected]> | 2024-02-16 06:58:59 -1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-02-16 06:58:59 -1000 |
| commit | 59d8f1e1d46abe92e114d50a7a1852bdb8baa608 (patch) | |
| tree | 13387a512fe8844f91da6c96622f5d2073459075 /emulated | |
| parent | 06f88424566478b7a8e5817fd6af3d2a76e34519 (diff) | |
feat/update-protobufs (#16)
* use meshnet-gophers protobufs
* update go.mod for meshnet-gophers protobufs
* update protos
* add gitignore
* update go.mod
* use locally generated protobufs
* add generate.go
* use meshtastic protobufs upstream
Diffstat (limited to 'emulated')
| -rw-r--r-- | emulated/emulated.go | 2 | ||||
| -rw-r--r-- | emulated/example/main.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/emulated/emulated.go b/emulated/emulated.go index de62c2a..27ab820 100644 --- a/emulated/emulated.go +++ b/emulated/emulated.go @@ -1,11 +1,11 @@ package emulated import ( - pb "buf.build/gen/go/meshtastic/protobufs/protocolbuffers/go/meshtastic" "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" diff --git a/emulated/example/main.go b/emulated/example/main.go index e2978e2..36b36c3 100644 --- a/emulated/example/main.go +++ b/emulated/example/main.go @@ -1,12 +1,12 @@ package main import ( - pb "buf.build/gen/go/meshtastic/protobufs/protocolbuffers/go/meshtastic" "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" |
