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

@@ -20,8 +20,8 @@ import (
"strconv"
"strings"
"github.com/syncthing/protocol"
"github.com/syncthing/syncthing/lib/osutil"
"github.com/syncthing/syncthing/lib/protocol"
"golang.org/x/crypto/bcrypt"
)

View File

@@ -17,7 +17,7 @@ import (
"strings"
"testing"
"github.com/syncthing/protocol"
"github.com/syncthing/syncthing/lib/protocol"
)
var device1, device2, device3, device4 protocol.DeviceID

View File

@@ -9,9 +9,9 @@ package config
import (
"os"
"github.com/syncthing/protocol"
"github.com/syncthing/syncthing/lib/events"
"github.com/syncthing/syncthing/lib/osutil"
"github.com/syncthing/syncthing/lib/protocol"
"github.com/syncthing/syncthing/lib/sync"
)