Skip to content

Commit df9766e

Browse files
committed
added go mods
1 parent 12d3cb2 commit df9766e

File tree

7 files changed

+26
-10
lines changed

7 files changed

+26
-10
lines changed

cmd/ble/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
proto "github.com/golang/protobuf/proto"
1111
"github.com/paypal/gatt"
1212
"github.com/paypal/gatt/examples/option"
13-
"github.com/qsydev/goterm/internal/ble/fragmenter"
14-
"github.com/qsydev/goterm/internal/executor"
15-
"github.com/qsydev/goterm/pkg/qsy"
13+
"qsydev.com/term/internal/ble/fragmenter"
14+
"qsydev.com/term/internal/executor"
15+
"qsydev.com/term/pkg/qsy"
1616
)
1717

1818
var srv *qsy.Server

cmd/term/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"log"
66

7-
"github.com/qsydev/goterm/internal/terminal"
7+
"qsydev.com/term/internal/terminal"
88
)
99

1010
func main() {

cmd/test/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"log"
66
"os"
77

8-
"github.com/qsydev/goterm/pkg/qsy"
8+
"qsydev.com/term/pkg/qsy"
99
)
1010

1111
type r struct{}

go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
module qsydev.com/term
22

33
require (
4+
github.com/golang/protobuf v1.2.0
45
github.com/google/uuid v0.0.0-20161128191214-064e2069ce9c
56
github.com/paypal/gatt v0.0.0-20151011220935-4ae819d591cf
67
github.com/pkg/errors v0.8.0
78
github.com/pkg/profile v1.2.1
9+
github.com/qsydev/goterm v0.0.0-20180705000838-7f4a021126f9
810
golang.org/x/net v0.0.0-20180611182652-db08ff08e862
911
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
1012
)

go.sum

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
github.com/golang/protobuf v1.2.0 h1:P3YflyNX/ehuJFLhxviNdFxQPkGK5cDcApsge1SqnvM=
2+
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
3+
github.com/google/uuid v0.0.0-20161128191214-064e2069ce9c/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
4+
github.com/paypal/gatt v0.0.0-20151011220935-4ae819d591cf h1:RHRtrMle1AlWsMdCoIQIbq7IB2y8/5qEsUoAzjCCSCw=
5+
github.com/paypal/gatt v0.0.0-20151011220935-4ae819d591cf/go.mod h1:+AwQL2mK3Pd3S+TUwg0tYQjid0q1txyNUJuuSmz8Kdk=
6+
github.com/pkg/errors v0.8.0 h1:WdK/asTD0HN+q6hsWO3/vpuAkAr+tw6aNJNDFFf0+qw=
7+
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
8+
github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA=
9+
github.com/qsydev/goterm v0.0.0-20180705000838-7f4a021126f9 h1:xKRLlkyjL0sgFKUa0oUTtNQ7tgm9JCP8XpSBL1DErT4=
10+
github.com/qsydev/goterm v0.0.0-20180705000838-7f4a021126f9/go.mod h1:GgREbHRduOzZPqDD6Sv7rjzxkKsd0PIJTVJhr1dB/9A=
11+
golang.org/x/net v0.0.0-20180611182652-db08ff08e862 h1:JZi6BqOZ+iSgmLWe6llhGrNnEnK+YB/MRkStwnEfbqM=
12+
golang.org/x/net v0.0.0-20180611182652-db08ff08e862/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
13+
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f h1:wMNYb4v58l5UBM7MYRLPG6ZhfOqbKu7X5eyFl8ZhKvA=
14+
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=

internal/executor/step.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package executor
22

3-
import "github.com/qsydev/goterm/internal/tree"
3+
import "qsydev.com/term/internal/tree"
44

55
type step struct {
66
*Step

internal/terminal/terminal.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import (
88
"github.com/golang/protobuf/proto"
99
"github.com/pkg/errors"
1010

11-
"github.com/qsydev/goterm/internal/ble"
12-
"github.com/qsydev/goterm/internal/ble/fragmenter"
13-
"github.com/qsydev/goterm/internal/executor"
14-
"github.com/qsydev/goterm/pkg/qsy"
11+
"qsydev.com/term/internal/ble"
12+
"qsydev.com/term/internal/ble/fragmenter"
13+
"qsydev.com/term/internal/executor"
14+
"qsydev.com/term/pkg/qsy"
1515
)
1616

1717
const (

0 commit comments

Comments
 (0)