Skip to content

Commit

Permalink
Fix types import path
Browse files Browse the repository at this point in the history
  • Loading branch information
hashworks committed Apr 16, 2016
1 parent 89decce commit 0ab3e2e
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion xrel/calendar.go
Expand Up @@ -2,7 +2,7 @@ package xrel

import (
"encoding/json"
"github.com/hashworks/xRELTerminalClient/src/xrel/types"
"github.com/hashworks/go-xREL-API/xrel/types"
"io/ioutil"
)

Expand Down
2 changes: 1 addition & 1 deletion xrel/comments.go
Expand Up @@ -3,7 +3,7 @@ package xrel
import (
"encoding/json"
"errors"
"github.com/hashworks/xRELTerminalClient/src/xrel/types"
"github.com/hashworks/go-xREL-API/xrel/types"
"io/ioutil"
"net/http"
"net/url"
Expand Down
2 changes: 1 addition & 1 deletion xrel/extInfo.go
Expand Up @@ -3,7 +3,7 @@ package xrel
import (
"encoding/json"
"errors"
"github.com/hashworks/xRELTerminalClient/src/xrel/types"
"github.com/hashworks/go-xREL-API/xrel/types"
"io/ioutil"
"net/http"
"net/url"
Expand Down
2 changes: 1 addition & 1 deletion xrel/favs.go
Expand Up @@ -3,7 +3,7 @@ package xrel
import (
"encoding/json"
"errors"
"github.com/hashworks/xRELTerminalClient/src/xrel/types"
"github.com/hashworks/go-xREL-API/xrel/types"
"io/ioutil"
"net/http"
"net/url"
Expand Down
2 changes: 1 addition & 1 deletion xrel/p2p.go
Expand Up @@ -3,7 +3,7 @@ package xrel
import (
"encoding/json"
"errors"
"github.com/hashworks/xRELTerminalClient/src/xrel/types"
"github.com/hashworks/go-xREL-API/xrel/types"
"io/ioutil"
"net/http"
"net/url"
Expand Down
2 changes: 1 addition & 1 deletion xrel/release.go
Expand Up @@ -3,7 +3,7 @@ package xrel
import (
"encoding/json"
"errors"
"github.com/hashworks/xRELTerminalClient/src/xrel/types"
"github.com/hashworks/go-xREL-API/xrel/types"
"io/ioutil"
"net/http"
"strconv"
Expand Down
2 changes: 1 addition & 1 deletion xrel/search.go
Expand Up @@ -3,7 +3,7 @@ package xrel
import (
"encoding/json"
"errors"
"github.com/hashworks/xRELTerminalClient/src/xrel/types"
"github.com/hashworks/go-xREL-API/xrel/types"
"io/ioutil"
"net/http"
"net/url"
Expand Down
2 changes: 1 addition & 1 deletion xrel/shared.go
Expand Up @@ -16,7 +16,7 @@ package xrel

import (
"errors"
"github.com/hashworks/xRELTerminalClient/src/xrel/types"
"github.com/hashworks/go-xREL-API/xrel/types"
"github.com/mrjones/oauth"
"net/http"
"strconv"
Expand Down
2 changes: 1 addition & 1 deletion xrel/user.go
Expand Up @@ -2,7 +2,7 @@ package xrel

import (
"encoding/json"
"github.com/hashworks/xRELTerminalClient/src/xrel/types"
"github.com/hashworks/go-xREL-API/xrel/types"
"io/ioutil"
"net/http"
)
Expand Down

0 comments on commit 0ab3e2e

Please sign in to comment.