looking at github.com/paypal/gatt ...

This commit is contained in:
Vincent Batts 2023-04-11 16:14:49 -04:00
commit 0a48228ddf
3 changed files with 18 additions and 0 deletions

5
go.mod Normal file
View File

@ -0,0 +1,5 @@
module tmp.ble
go 1.19
require github.com/paypal/gatt v0.0.0-20151011220935-4ae819d591cf

2
go.sum Normal file
View File

@ -0,0 +1,2 @@
github.com/paypal/gatt v0.0.0-20151011220935-4ae819d591cf h1:RHRtrMle1AlWsMdCoIQIbq7IB2y8/5qEsUoAzjCCSCw=
github.com/paypal/gatt v0.0.0-20151011220935-4ae819d591cf/go.mod h1:+AwQL2mK3Pd3S+TUwg0tYQjid0q1txyNUJuuSmz8Kdk=

11
main.go Normal file
View File

@ -0,0 +1,11 @@
package main
import (
"fmt"
_ "github.com/paypal/gatt"
)
func main() {
fmt.Println("vim-go")
}