Fix import paths

This commit is contained in:
Jakob Borg
2015-09-22 19:38:46 +02:00
parent f177924629
commit 4581c57478
52 changed files with 58 additions and 58 deletions

View File

@@ -10,8 +10,8 @@ import (
"net/url"
"time"
syncthingprotocol "github.com/syncthing/protocol"
"github.com/syncthing/relaysrv/protocol"
syncthingprotocol "github.com/syncthing/syncthing/lib/protocol"
"github.com/syncthing/syncthing/lib/relay/protocol"
"github.com/syncthing/syncthing/lib/sync"
)

View File

@@ -11,8 +11,8 @@ import (
"strings"
"time"
syncthingprotocol "github.com/syncthing/protocol"
"github.com/syncthing/relaysrv/protocol"
syncthingprotocol "github.com/syncthing/syncthing/lib/protocol"
"github.com/syncthing/syncthing/lib/relay/protocol"
)
func GetInvitationFromRelay(uri *url.URL, id syncthingprotocol.DeviceID, certs []tls.Certificate) (protocol.SessionInvitation, error) {

View File

@@ -9,7 +9,7 @@ import (
"fmt"
"net"
syncthingprotocol "github.com/syncthing/protocol"
syncthingprotocol "github.com/syncthing/syncthing/lib/protocol"
)
const (

View File

@@ -15,11 +15,11 @@ import (
"sort"
"time"
"github.com/syncthing/relaysrv/client"
"github.com/syncthing/relaysrv/protocol"
"github.com/syncthing/syncthing/lib/config"
"github.com/syncthing/syncthing/lib/events"
"github.com/syncthing/syncthing/lib/osutil"
"github.com/syncthing/syncthing/lib/relay/client"
"github.com/syncthing/syncthing/lib/relay/protocol"
"github.com/syncthing/syncthing/lib/sync"
"github.com/thejerf/suture"