domain: use custom domain for all uses of winbt subpackage

Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
deadprogram 2020-09-09 15:51:38 +02:00 committed by Ayke
parent 97532eaed4
commit a55e2194c5
4 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@ package bluetooth
import (
"github.com/go-ole/go-ole"
"github.com/tinygo-org/bluetooth/winbt"
"tinygo.org/x/bluetooth/winbt"
)
type Adapter struct {

View file

@ -1,7 +1,7 @@
package bluetooth
import (
"github.com/tinygo-org/bluetooth/winbt"
"tinygo.org/x/bluetooth/winbt"
)
// Address contains a Bluetooth MAC address.

1
go.mod
View file

@ -8,7 +8,6 @@ require (
github.com/godbus/dbus/v5 v5.0.3
github.com/muka/go-bluetooth v0.0.0-20200619025933-f6113f7141c5
github.com/sirupsen/logrus v1.6.0 // indirect
github.com/tinygo-org/bluetooth v0.0.0-20200801163934-de824e188486
golang.org/x/crypto v0.0.0-20200602180216-279210d13fed
golang.org/x/sys v0.0.0-20200826173525-f9321e4c35a6 // indirect
)

View file

@ -13,7 +13,8 @@
// https://blog.magnusmontin.net/2017/12/30/minimal-uwp-wrl-xaml-app/
// https://yizhang82.dev/what-is-winrt
// https://www.slideshare.net/goldshtn/deep-dive-into-winrt
package winbt
//
package winbt // import "tinygo.org/x/bluetooth/winbt"
import (
"github.com/go-ole/go-ole"