Fix mod path
This commit is contained in:
parent
de5056ceb2
commit
b062257995
|
@ -3,8 +3,8 @@ package adb
|
|||
import (
|
||||
"strconv"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/evrins/goadb/wire"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/wire"
|
||||
)
|
||||
|
||||
/*
|
||||
|
|
|
@ -3,7 +3,7 @@ package adb
|
|||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/evrins/goadb/wire"
|
||||
"github.com/timoxa0/goadb/wire"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
|
|
@ -7,8 +7,8 @@ import (
|
|||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/evrins/goadb/wire"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/wire"
|
||||
)
|
||||
|
||||
// MtimeOfClose should be passed to OpenWrite to set the file modification time to the time the Close
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"bufio"
|
||||
"strings"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
)
|
||||
|
||||
type DeviceInfo struct {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package adb
|
||||
|
||||
import (
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
)
|
||||
|
||||
// DeviceState represents one of the 3 possible states adb will report devices.
|
||||
|
|
|
@ -3,8 +3,8 @@ package adb
|
|||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/evrins/goadb/wire"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/wire"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
|
|
@ -8,8 +8,8 @@ import (
|
|||
"sync/atomic"
|
||||
"time"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/evrins/goadb/wire"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/wire"
|
||||
)
|
||||
|
||||
/*
|
||||
|
|
|
@ -3,8 +3,8 @@ package adb
|
|||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/evrins/goadb/wire"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/wire"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
|
|
@ -5,8 +5,8 @@ import (
|
|||
"net"
|
||||
"runtime"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/evrins/goadb/wire"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/wire"
|
||||
)
|
||||
|
||||
// Dialer knows how to create connections to an adb server.
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"os"
|
||||
"time"
|
||||
|
||||
"github.com/evrins/goadb/wire"
|
||||
"github.com/timoxa0/goadb/wire"
|
||||
)
|
||||
|
||||
// DirEntry holds information about a directory entry on a device.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package adb
|
||||
|
||||
import "github.com/evrins/goadb/internal/errors"
|
||||
import "github.com/timoxa0/goadb/internal/errors"
|
||||
|
||||
type ErrCode errors.ErrCode
|
||||
|
||||
|
|
|
@ -7,8 +7,8 @@ import (
|
|||
"os/exec"
|
||||
"strings"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/evrins/goadb/wire"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/wire"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -4,8 +4,8 @@ import (
|
|||
"io"
|
||||
"strings"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/evrins/goadb/wire"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/wire"
|
||||
)
|
||||
|
||||
// MockServer implements Server, Scanner, and Sender.
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"fmt"
|
||||
"testing"
|
||||
|
||||
"github.com/evrins/goadb/wire"
|
||||
"github.com/timoxa0/goadb/wire"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
|
|
@ -5,8 +5,8 @@ import (
|
|||
"os"
|
||||
"time"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/evrins/goadb/wire"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/wire"
|
||||
)
|
||||
|
||||
var zeroTime = time.Unix(0, 0).UTC()
|
||||
|
|
|
@ -7,8 +7,8 @@ import (
|
|||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/evrins/goadb/wire"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/wire"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
|
|
@ -3,8 +3,8 @@ package adb
|
|||
import (
|
||||
"io"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/evrins/goadb/wire"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/wire"
|
||||
)
|
||||
|
||||
// syncFileReader wraps a SyncConn that has requested to receive a file.
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/evrins/goadb/wire"
|
||||
"github.com/timoxa0/goadb/wire"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
|
|
@ -6,8 +6,8 @@ import (
|
|||
"os"
|
||||
"time"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/evrins/goadb/wire"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/wire"
|
||||
)
|
||||
|
||||
// syncFileWriter wraps a SyncConn that has requested to send a file.
|
||||
|
|
|
@ -8,7 +8,7 @@ import (
|
|||
"encoding/binary"
|
||||
"strings"
|
||||
|
||||
"github.com/evrins/goadb/wire"
|
||||
"github.com/timoxa0/goadb/wire"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"regexp"
|
||||
"strings"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
@ -2,7 +2,7 @@ package main
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/evrins/goadb/adb"
|
||||
"github.com/timoxa0/goadb/adb"
|
||||
"io"
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
|
|
@ -4,12 +4,12 @@ package main
|
|||
import (
|
||||
"flag"
|
||||
"fmt"
|
||||
"github.com/evrins/goadb/adb"
|
||||
"github.com/timoxa0/goadb/adb"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
"time"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
@ -5,13 +5,13 @@ import (
|
|||
"bufio"
|
||||
"flag"
|
||||
"fmt"
|
||||
"github.com/evrins/goadb/adb"
|
||||
"github.com/timoxa0/goadb/adb"
|
||||
"io"
|
||||
"log"
|
||||
"os"
|
||||
"strings"
|
||||
|
||||
"github.com/evrins/goadb/wire"
|
||||
"github.com/timoxa0/goadb/wire"
|
||||
)
|
||||
|
||||
var port = flag.Int("p", adb.AdbPort, "`port` the adb server is listening on")
|
||||
|
|
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
|||
module github.com/evrins/goadb
|
||||
module github.com/timoxa0/goadb
|
||||
|
||||
go 1.14
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package wire
|
||||
|
||||
import "github.com/evrins/goadb/internal/errors"
|
||||
import "github.com/timoxa0/goadb/internal/errors"
|
||||
|
||||
const (
|
||||
// The official implementation of adb imposes an undocumented 255-byte limit
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"io/ioutil"
|
||||
"strconv"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
)
|
||||
|
||||
// TODO(zach): All EOF errors returned from networoking calls should use ConnectionResetError.
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
"io/ioutil"
|
||||
"testing"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"fmt"
|
||||
"io"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
)
|
||||
|
||||
// Sender sends messages to the server.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package wire
|
||||
|
||||
import "github.com/evrins/goadb/internal/errors"
|
||||
import "github.com/timoxa0/goadb/internal/errors"
|
||||
|
||||
const (
|
||||
// Chunks cannot be longer than 64k.
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"os"
|
||||
"time"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
)
|
||||
|
||||
type SyncScanner interface {
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"os"
|
||||
"time"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
)
|
||||
|
||||
type SyncSender interface {
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"regexp"
|
||||
"sync"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
)
|
||||
|
||||
// ErrorResponseDetails is an error message returned by the server for a particular request.
|
||||
|
|
|
@ -3,7 +3,7 @@ package wire
|
|||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/evrins/goadb/internal/errors"
|
||||
"github.com/timoxa0/goadb/internal/errors"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue