Skip to content

Commit 9354337

Browse files
committed
Fixed imports
1 parent 459fdc8 commit 9354337

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ The official Machine Box Go SDK provides Go clients for each box.
77
Go get the repo:
88

99
```
10-
go get github.com/machinebox/mb/exp/sdk-go
10+
go get github.com/machinebox/sdk-go
1111
```
1212

1313
Then import the package of the box you wish to use:
1414

1515
```go
16-
import "github.com/machinebox/mb/exp/sdk-go/facebox"
16+
import "github.com/machinebox/sdk-go/facebox"
1717
```
1818

1919
Then create a client, providing the address of the running box.

facebox/facebox.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"net/url"
99
"time"
1010

11-
"github.com/machinebox/mb/exp/sdk-go/boxutil"
11+
"github.com/machinebox/sdk-go/boxutil"
1212
)
1313

1414
// Face represents a face in an image.

facebox/facebox_check_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"strings"
1010
"testing"
1111

12-
"github.com/machinebox/mb/exp/sdk-go/facebox"
12+
"github.com/machinebox/sdk-go/facebox"
1313
"github.com/matryer/is"
1414
)
1515

facebox/facebox_similar_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"strings"
1010
"testing"
1111

12-
"github.com/machinebox/mb/exp/sdk-go/facebox"
12+
"github.com/machinebox/sdk-go/facebox"
1313
"github.com/matryer/is"
1414
)
1515

facebox/facebox_state_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"strings"
1010
"testing"
1111

12-
"github.com/machinebox/mb/exp/sdk-go/facebox"
12+
"github.com/machinebox/sdk-go/facebox"
1313
"github.com/matryer/is"
1414
)
1515

facebox/facebox_teach_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"strings"
1010
"testing"
1111

12-
"github.com/machinebox/mb/exp/sdk-go/facebox"
12+
"github.com/machinebox/sdk-go/facebox"
1313
"github.com/matryer/is"
1414
)
1515

facebox/facebox_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"net/http/httptest"
77
"testing"
88

9-
"github.com/machinebox/mb/exp/sdk-go/facebox"
9+
"github.com/machinebox/sdk-go/facebox"
1010
"github.com/matryer/is"
1111
)
1212

nudebox/nudebox.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"net/url"
1111
"time"
1212

13-
"github.com/machinebox/mb/exp/sdk-go/boxutil"
13+
"github.com/machinebox/sdk-go/boxutil"
1414
"github.com/pkg/errors"
1515
)
1616

nudebox/nudebox_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"strings"
1010
"testing"
1111

12-
"github.com/machinebox/mb/exp/sdk-go/nudebox"
12+
"github.com/machinebox/sdk-go/nudebox"
1313
"github.com/matryer/is"
1414
)
1515

tagbox/tagbox.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"net/url"
1111
"time"
1212

13-
"github.com/machinebox/mb/exp/sdk-go/boxutil"
13+
"github.com/machinebox/sdk-go/boxutil"
1414
"github.com/pkg/errors"
1515
)
1616

0 commit comments

Comments
 (0)