Skip to content
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.

Commit

Permalink
It turns out CI can help you fix problems.
Browse files Browse the repository at this point in the history
  • Loading branch information
judy2k committed Apr 24, 2017
1 parent 3f99038 commit 4f43399
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 9 deletions.
2 changes: 1 addition & 1 deletion application_base.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package nexmo

import "github.com/judy2k/nexmo/sling"
import "github.com/judy2k/nexmo-go/sling"

type ApplicationService struct {
sling *sling.Sling
Expand Down
2 changes: 1 addition & 1 deletion auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"fmt"

"github.com/dgrijalva/jwt-go"
"github.com/judy2k/nexmo/sling"
"github.com/judy2k/nexmo-go/sling"
)

type AuthType uint8
Expand Down
2 changes: 1 addition & 1 deletion call_base.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package nexmo

import "github.com/judy2k/nexmo/sling"
import "github.com/judy2k/nexmo-go/sling"

type CallService struct {
sling *sling.Sling
Expand Down
2 changes: 1 addition & 1 deletion calls.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"net/http"

"github.com/judy2k/nexmo/sling"
"github.com/judy2k/nexmo-go/sling"
)

func (c *CallErrorResponse) Error() string {
Expand Down
2 changes: 1 addition & 1 deletion developer_base.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package nexmo

import "github.com/judy2k/nexmo/sling"
import "github.com/judy2k/nexmo-go/sling"

type DeveloperService struct {
sling *sling.Sling
Expand Down
2 changes: 1 addition & 1 deletion insight_base.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package nexmo

import "github.com/judy2k/nexmo/sling"
import "github.com/judy2k/nexmo-go/sling"

type InsightService struct {
sling *sling.Sling
Expand Down
2 changes: 1 addition & 1 deletion nexmo.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"net/http"

"github.com/judy2k/nexmo/sling"
"github.com/judy2k/nexmo-go/sling"
)

type Client struct {
Expand Down
2 changes: 1 addition & 1 deletion sms_base.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package nexmo

import "github.com/judy2k/nexmo/sling"
import "github.com/judy2k/nexmo-go/sling"

type SMSService struct {
sling *sling.Sling
Expand Down
7 changes: 7 additions & 0 deletions sms_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package nexmo

import "testing"

func TestZZZ(t *testing.T) {
// pass
}
2 changes: 1 addition & 1 deletion verify_base.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package nexmo

import "github.com/judy2k/nexmo/sling"
import "github.com/judy2k/nexmo-go/sling"

type VerifyService struct {
sling *sling.Sling
Expand Down

0 comments on commit 4f43399

Please sign in to comment.