Move restic package to internal/restic

This commit is contained in:
Alexander Neumann 2017-07-24 17:42:25 +02:00
parent 94030a12cf
commit 23c903074c
179 changed files with 100 additions and 136 deletions

View File

@ -10,8 +10,6 @@ import (
"strings" "strings"
"time" "time"
"github.com/restic/restic/internal"
"github.com/spf13/cobra" "github.com/spf13/cobra"
"github.com/restic/restic/internal/archiver" "github.com/restic/restic/internal/archiver"
@ -19,6 +17,7 @@ import (
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/filter" "github.com/restic/restic/internal/filter"
"github.com/restic/restic/internal/fs" "github.com/restic/restic/internal/fs"
"github.com/restic/restic/internal/restic"
) )
var cmdBackup = &cobra.Command{ var cmdBackup = &cobra.Command{

View File

@ -8,10 +8,10 @@ import (
"github.com/spf13/cobra" "github.com/spf13/cobra"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/backend" "github.com/restic/restic/internal/backend"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
) )
var cmdCat = &cobra.Command{ var cmdCat = &cobra.Command{

View File

@ -8,9 +8,9 @@ import (
"github.com/spf13/cobra" "github.com/spf13/cobra"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/checker" "github.com/restic/restic/internal/checker"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
) )
var cmdCheck = &cobra.Command{ var cmdCheck = &cobra.Command{

View File

@ -11,10 +11,10 @@ import (
"github.com/spf13/cobra" "github.com/spf13/cobra"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/pack" "github.com/restic/restic/internal/pack"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/worker" "github.com/restic/restic/internal/worker"
) )

View File

@ -9,9 +9,9 @@ import (
"github.com/spf13/cobra" "github.com/spf13/cobra"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
) )
var cmdFind = &cobra.Command{ var cmdFind = &cobra.Command{

View File

@ -6,8 +6,7 @@ import (
"sort" "sort"
"strings" "strings"
"github.com/restic/restic/internal" "github.com/restic/restic/internal/restic"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )

View File

@ -4,9 +4,9 @@ import (
"context" "context"
"fmt" "fmt"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )

View File

@ -4,9 +4,9 @@ import (
"context" "context"
"fmt" "fmt"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/index" "github.com/restic/restic/internal/index"
"github.com/restic/restic/internal/restic"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )

View File

@ -6,9 +6,9 @@ import (
"github.com/spf13/cobra" "github.com/spf13/cobra"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
) )
var cmdLs = &cobra.Command{ var cmdLs = &cobra.Command{

View File

@ -1,8 +1,8 @@
package main package main
import ( import (
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/migrations" "github.com/restic/restic/internal/migrations"
"github.com/restic/restic/internal/restic"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )

View File

@ -7,12 +7,11 @@ import (
"context" "context"
"os" "os"
"github.com/restic/restic/internal"
"github.com/spf13/cobra" "github.com/spf13/cobra"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
resticfs "github.com/restic/restic/internal/fs" resticfs "github.com/restic/restic/internal/fs"
"github.com/restic/restic/internal/fuse" "github.com/restic/restic/internal/fuse"

View File

@ -4,11 +4,11 @@ import (
"fmt" "fmt"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/index" "github.com/restic/restic/internal/index"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )

View File

@ -3,8 +3,8 @@ package main
import ( import (
"context" "context"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/index" "github.com/restic/restic/internal/index"
"github.com/restic/restic/internal/restic"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )

View File

@ -1,10 +1,10 @@
package main package main
import ( import (
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/filter" "github.com/restic/restic/internal/filter"
"github.com/restic/restic/internal/restic"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )

View File

@ -7,9 +7,8 @@ import (
"io" "io"
"sort" "sort"
"github.com/restic/restic/internal/restic"
"github.com/spf13/cobra" "github.com/spf13/cobra"
"github.com/restic/restic/internal"
) )
var cmdSnapshots = &cobra.Command{ var cmdSnapshots = &cobra.Command{

View File

@ -5,10 +5,10 @@ import (
"github.com/spf13/cobra" "github.com/spf13/cobra"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
) )
var cmdTag = &cobra.Command{ var cmdTag = &cobra.Command{

View File

@ -3,8 +3,7 @@ package main
import ( import (
"context" "context"
"github.com/restic/restic/internal" "github.com/restic/restic/internal/restic"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )

View File

@ -3,8 +3,8 @@ package main
import ( import (
"context" "context"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
) )
// FindFilteredSnapshots yields Snapshots, either given explicitly by `snapshotIDs` or filtered from the list of all snapshots. // FindFilteredSnapshots yields Snapshots, either given explicitly by `snapshotIDs` or filtered from the list of all snapshots.

View File

@ -6,7 +6,7 @@ import (
"path/filepath" "path/filepath"
"time" "time"
"github.com/restic/restic/internal" "github.com/restic/restic/internal/restic"
) )
func formatBytes(c uint64) string { func formatBytes(c uint64) string {

View File

@ -10,8 +10,6 @@ import (
"strings" "strings"
"syscall" "syscall"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/backend/b2" "github.com/restic/restic/internal/backend/b2"
"github.com/restic/restic/internal/backend/local" "github.com/restic/restic/internal/backend/local"
"github.com/restic/restic/internal/backend/location" "github.com/restic/restic/internal/backend/location"
@ -22,6 +20,7 @@ import (
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/options" "github.com/restic/restic/internal/options"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"

View File

@ -12,8 +12,8 @@ import (
"testing" "testing"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
. "github.com/restic/restic/internal/test" . "github.com/restic/restic/internal/test"
) )

View File

@ -17,9 +17,8 @@ import (
"testing" "testing"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/filter" "github.com/restic/restic/internal/filter"

View File

@ -7,9 +7,9 @@ import (
"sync" "sync"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
) )
var globalLocks struct { var globalLocks struct {

View File

@ -8,9 +8,9 @@ import (
"os" "os"
"runtime" "runtime"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/options" "github.com/restic/restic/internal/options"
"github.com/restic/restic/internal/restic"
"github.com/spf13/cobra" "github.com/spf13/cobra"

View File

@ -5,8 +5,8 @@ import (
"io" "io"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"

View File

@ -8,9 +8,9 @@ import (
"math/rand" "math/rand"
"testing" "testing"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/checker" "github.com/restic/restic/internal/checker"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
) )
func loadBlob(t *testing.T, repo restic.Repository, id restic.ID, buf []byte) int { func loadBlob(t *testing.T, repo restic.Repository, id restic.ID, buf []byte) int {

View File

@ -11,9 +11,8 @@ import (
"sync" "sync"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/walk" "github.com/restic/restic/internal/walk"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"

View File

@ -10,8 +10,8 @@ import (
"time" "time"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/archiver" "github.com/restic/restic/internal/archiver"
"github.com/restic/restic/internal/mock" "github.com/restic/restic/internal/mock"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"

View File

@ -7,11 +7,11 @@ import (
"testing" "testing"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/archiver" "github.com/restic/restic/internal/archiver"
"github.com/restic/restic/internal/checker" "github.com/restic/restic/internal/checker"
"github.com/restic/restic/internal/crypto" "github.com/restic/restic/internal/crypto"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
. "github.com/restic/restic/internal/test" . "github.com/restic/restic/internal/test"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"

View File

@ -4,7 +4,7 @@ import (
"context" "context"
"testing" "testing"
"github.com/restic/restic/internal" "github.com/restic/restic/internal/restic"
) )
// TestSnapshot creates a new snapshot of path. // TestSnapshot creates a new snapshot of path.

View File

@ -6,11 +6,10 @@ import (
"path" "path"
"strings" "strings"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/backend" "github.com/restic/restic/internal/backend"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/kurin/blazer/b2" "github.com/kurin/blazer/b2"
) )

View File

@ -7,9 +7,9 @@ import (
"testing" "testing"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/backend/b2" "github.com/restic/restic/internal/backend/b2"
"github.com/restic/restic/internal/backend/test" "github.com/restic/restic/internal/backend/test"
"github.com/restic/restic/internal/restic"
. "github.com/restic/restic/internal/test" . "github.com/restic/restic/internal/test"
) )

View File

@ -6,10 +6,10 @@ import (
"path/filepath" "path/filepath"
"regexp" "regexp"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/fs" "github.com/restic/restic/internal/fs"
"github.com/restic/restic/internal/restic"
) )
// Layout computes paths for file name storage. // Layout computes paths for file name storage.

View File

@ -3,7 +3,7 @@ package backend
import ( import (
"encoding/hex" "encoding/hex"
"github.com/restic/restic/internal" "github.com/restic/restic/internal/restic"
) )
// DefaultLayout implements the default layout for local and sftp backends, as // DefaultLayout implements the default layout for local and sftp backends, as

View File

@ -1,6 +1,6 @@
package backend package backend
import "github.com/restic/restic/internal" import "github.com/restic/restic/internal/restic"
// RESTLayout implements the default layout for the REST protocol. // RESTLayout implements the default layout for the REST protocol.
type RESTLayout struct { type RESTLayout struct {

View File

@ -1,6 +1,6 @@
package backend package backend
import "github.com/restic/restic/internal" import "github.com/restic/restic/internal/restic"
// S3LegacyLayout implements the old layout used for s3 cloud storage backends, as // S3LegacyLayout implements the old layout used for s3 cloud storage backends, as
// described in the Design document. // described in the Design document.

View File

@ -8,7 +8,7 @@ import (
"sort" "sort"
"testing" "testing"
"github.com/restic/restic/internal" "github.com/restic/restic/internal/restic"
. "github.com/restic/restic/internal/test" . "github.com/restic/restic/internal/test"
) )

View File

@ -5,7 +5,7 @@ import (
"path/filepath" "path/filepath"
"testing" "testing"
"github.com/restic/restic/internal" "github.com/restic/restic/internal/restic"
. "github.com/restic/restic/internal/test" . "github.com/restic/restic/internal/test"
) )

View File

@ -6,9 +6,8 @@ import (
"os" "os"
"path/filepath" "path/filepath"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/backend" "github.com/restic/restic/internal/backend"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"

View File

@ -4,10 +4,9 @@ import (
"io/ioutil" "io/ioutil"
"testing" "testing"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/backend/local" "github.com/restic/restic/internal/backend/local"
"github.com/restic/restic/internal/backend/test" "github.com/restic/restic/internal/backend/test"
"github.com/restic/restic/internal/restic"
. "github.com/restic/restic/internal/test" . "github.com/restic/restic/internal/test"
) )

View File

@ -7,9 +7,8 @@ import (
"io/ioutil" "io/ioutil"
"sync" "sync"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
) )

View File

@ -4,9 +4,8 @@ import (
"context" "context"
"testing" "testing"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/backend/mem" "github.com/restic/restic/internal/backend/mem"
"github.com/restic/restic/internal/backend/test" "github.com/restic/restic/internal/backend/test"

View File

@ -11,12 +11,11 @@ import (
"path" "path"
"strings" "strings"
"github.com/restic/restic/internal"
"golang.org/x/net/context/ctxhttp" "golang.org/x/net/context/ctxhttp"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/backend" "github.com/restic/restic/internal/backend"
) )

View File

@ -10,10 +10,9 @@ import (
"testing" "testing"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/backend/rest" "github.com/restic/restic/internal/backend/rest"
"github.com/restic/restic/internal/backend/test" "github.com/restic/restic/internal/backend/test"
"github.com/restic/restic/internal/restic"
. "github.com/restic/restic/internal/test" . "github.com/restic/restic/internal/test"
) )

View File

@ -10,10 +10,9 @@ import (
"strings" "strings"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/backend" "github.com/restic/restic/internal/backend"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/minio/minio-go" "github.com/minio/minio-go"
"github.com/minio/minio-go/pkg/credentials" "github.com/minio/minio-go/pkg/credentials"

View File

@ -14,10 +14,9 @@ import (
"testing" "testing"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/backend/s3" "github.com/restic/restic/internal/backend/s3"
"github.com/restic/restic/internal/backend/test" "github.com/restic/restic/internal/backend/test"
"github.com/restic/restic/internal/restic"
. "github.com/restic/restic/internal/test" . "github.com/restic/restic/internal/test"
) )

View File

@ -6,8 +6,8 @@ import (
"path/filepath" "path/filepath"
"testing" "testing"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/backend/sftp" "github.com/restic/restic/internal/backend/sftp"
"github.com/restic/restic/internal/restic"
. "github.com/restic/restic/internal/test" . "github.com/restic/restic/internal/test"
) )

View File

@ -11,9 +11,8 @@ import (
"strings" "strings"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/backend" "github.com/restic/restic/internal/backend"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"

View File

@ -8,10 +8,10 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/backend/sftp" "github.com/restic/restic/internal/backend/sftp"
"github.com/restic/restic/internal/backend/test" "github.com/restic/restic/internal/backend/test"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
. "github.com/restic/restic/internal/test" . "github.com/restic/restic/internal/test"
) )

View File

@ -10,10 +10,10 @@ import (
"strings" "strings"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/backend" "github.com/restic/restic/internal/backend"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/ncw/swift" "github.com/ncw/swift"
) )

View File

@ -7,9 +7,8 @@ import (
"testing" "testing"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
. "github.com/restic/restic/internal/test" . "github.com/restic/restic/internal/test"
"github.com/restic/restic/internal/backend/swift" "github.com/restic/restic/internal/backend/swift"

View File

@ -6,7 +6,7 @@ import (
"io" "io"
"testing" "testing"
"github.com/restic/restic/internal" "github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/test" "github.com/restic/restic/internal/test"
) )

View File

@ -6,7 +6,7 @@ import (
"testing" "testing"
"time" "time"
"github.com/restic/restic/internal" "github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/test" "github.com/restic/restic/internal/test"
) )

View File

@ -14,8 +14,8 @@ import (
"testing" "testing"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/test" "github.com/restic/restic/internal/test"

View File

@ -4,8 +4,8 @@ import (
"context" "context"
"testing" "testing"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/backend/mem" "github.com/restic/restic/internal/backend/mem"
"github.com/restic/restic/internal/backend/test" "github.com/restic/restic/internal/backend/test"

View File

@ -5,7 +5,7 @@ import (
"io" "io"
"io/ioutil" "io/ioutil"
"github.com/restic/restic/internal" "github.com/restic/restic/internal/restic"
) )
// LoadAll reads all data stored in the backend for the handle. // LoadAll reads all data stored in the backend for the handle.

View File

@ -6,10 +6,9 @@ import (
"math/rand" "math/rand"
"testing" "testing"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/backend" "github.com/restic/restic/internal/backend"
"github.com/restic/restic/internal/backend/mem" "github.com/restic/restic/internal/backend/mem"
"github.com/restic/restic/internal/restic"
. "github.com/restic/restic/internal/test" . "github.com/restic/restic/internal/test"
) )

View File

@ -11,8 +11,8 @@ import (
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/fs" "github.com/restic/restic/internal/fs"
"github.com/restic/restic/internal/hashing" "github.com/restic/restic/internal/hashing"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/pack" "github.com/restic/restic/internal/pack"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"

View File

@ -8,10 +8,10 @@ import (
"sort" "sort"
"testing" "testing"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/archiver" "github.com/restic/restic/internal/archiver"
"github.com/restic/restic/internal/checker" "github.com/restic/restic/internal/checker"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/test" "github.com/restic/restic/internal/test"
) )

View File

@ -4,7 +4,7 @@ import (
"context" "context"
"testing" "testing"
"github.com/restic/restic/internal" "github.com/restic/restic/internal/restic"
) )
// TestCheckRepo runs the checker on repo. // TestCheckRepo runs the checker on repo.

View File

@ -4,8 +4,7 @@
package fuse package fuse
import ( import (
"github.com/restic/restic/internal" "github.com/restic/restic/internal/restic"
"golang.org/x/net/context" "golang.org/x/net/context"
) )

View File

@ -10,8 +10,8 @@ import (
"bazil.org/fuse/fs" "bazil.org/fuse/fs"
"golang.org/x/net/context" "golang.org/x/net/context"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/restic"
) )
// Statically ensure that *dir implement those interface // Statically ensure that *dir implement those interface

View File

@ -5,8 +5,8 @@ package fuse
import ( import (
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"bazil.org/fuse" "bazil.org/fuse"

View File

@ -12,11 +12,11 @@ import (
"golang.org/x/net/context" "golang.org/x/net/context"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
"bazil.org/fuse" "bazil.org/fuse"
"bazil.org/fuse/fs" "bazil.org/fuse/fs"
"github.com/restic/restic/internal"
. "github.com/restic/restic/internal/test" . "github.com/restic/restic/internal/test"
) )

View File

@ -4,10 +4,9 @@
package fuse package fuse
import ( import (
"github.com/restic/restic/internal"
"bazil.org/fuse" "bazil.org/fuse"
"bazil.org/fuse/fs" "bazil.org/fuse/fs"
"github.com/restic/restic/internal/restic"
"golang.org/x/net/context" "golang.org/x/net/context"
) )

View File

@ -4,8 +4,8 @@
package fuse package fuse
import ( import (
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/restic"
"golang.org/x/net/context" "golang.org/x/net/context"

View File

@ -8,8 +8,8 @@ import (
"os" "os"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/restic"
"golang.org/x/net/context" "golang.org/x/net/context"

View File

@ -6,10 +6,10 @@ import (
"fmt" "fmt"
"os" "os"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/list" "github.com/restic/restic/internal/list"
"github.com/restic/restic/internal/pack" "github.com/restic/restic/internal/pack"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/worker" "github.com/restic/restic/internal/worker"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"

View File

@ -6,9 +6,9 @@ import (
"testing" "testing"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/checker" "github.com/restic/restic/internal/checker"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/test" "github.com/restic/restic/internal/test"
) )

View File

@ -3,7 +3,7 @@ package list
import ( import (
"context" "context"
"github.com/restic/restic/internal" "github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/worker" "github.com/restic/restic/internal/worker"
) )

View File

@ -3,7 +3,7 @@ package migrations
import ( import (
"context" "context"
"github.com/restic/restic/internal" "github.com/restic/restic/internal/restic"
) )
// Migration implements a data migration. // Migration implements a data migration.

View File

@ -6,11 +6,11 @@ import (
"os" "os"
"path" "path"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/backend" "github.com/restic/restic/internal/backend"
"github.com/restic/restic/internal/backend/s3" "github.com/restic/restic/internal/backend/s3"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
) )
func init() { func init() {

View File

@ -4,9 +4,8 @@ import (
"context" "context"
"io" "io"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
) )
// Backend implements a mock backend. // Backend implements a mock backend.

View File

@ -1,8 +1,8 @@
package mock package mock
import ( import (
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/crypto" "github.com/restic/restic/internal/crypto"
"github.com/restic/restic/internal/restic"
) )
// Repository implements a mock Repository. // Repository implements a mock Repository.

View File

@ -7,10 +7,9 @@ import (
"io" "io"
"sync" "sync"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/crypto" "github.com/restic/restic/internal/crypto"
) )

View File

@ -10,11 +10,10 @@ import (
"io" "io"
"testing" "testing"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/backend/mem" "github.com/restic/restic/internal/backend/mem"
"github.com/restic/restic/internal/crypto" "github.com/restic/restic/internal/crypto"
"github.com/restic/restic/internal/pack" "github.com/restic/restic/internal/pack"
"github.com/restic/restic/internal/restic"
. "github.com/restic/restic/internal/test" . "github.com/restic/restic/internal/test"
) )

View File

@ -7,9 +7,8 @@ import (
"sync" "sync"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
) )

View File

@ -4,9 +4,8 @@ import (
"bytes" "bytes"
"testing" "testing"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
. "github.com/restic/restic/internal/test" . "github.com/restic/restic/internal/test"
) )

View File

@ -9,9 +9,8 @@ import (
"os/user" "os/user"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/backend" "github.com/restic/restic/internal/backend"
"github.com/restic/restic/internal/crypto" "github.com/restic/restic/internal/crypto"

View File

@ -4,9 +4,8 @@ import (
"context" "context"
"sync" "sync"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
) )

View File

@ -7,10 +7,9 @@ import (
"os" "os"
"sync" "sync"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/hashing" "github.com/restic/restic/internal/hashing"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/crypto" "github.com/restic/restic/internal/crypto"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"

View File

@ -7,11 +7,11 @@ import (
"os" "os"
"testing" "testing"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/backend/mem" "github.com/restic/restic/internal/backend/mem"
"github.com/restic/restic/internal/crypto" "github.com/restic/restic/internal/crypto"
"github.com/restic/restic/internal/fs" "github.com/restic/restic/internal/fs"
"github.com/restic/restic/internal/mock" "github.com/restic/restic/internal/mock"
"github.com/restic/restic/internal/restic"
) )
type randReader struct { type randReader struct {

View File

@ -4,9 +4,8 @@ import (
"context" "context"
"sync" "sync"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/restic"
) )
// ParallelWorkFunc gets one file ID to work on. If an error is returned, // ParallelWorkFunc gets one file ID to work on. If an error is returned,

View File

@ -6,9 +6,8 @@ import (
"testing" "testing"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
. "github.com/restic/restic/internal/test" . "github.com/restic/restic/internal/test"

View File

@ -5,11 +5,11 @@ import (
"crypto/sha256" "crypto/sha256"
"io" "io"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/debug" "github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/fs" "github.com/restic/restic/internal/fs"
"github.com/restic/restic/internal/hashing" "github.com/restic/restic/internal/hashing"
"github.com/restic/restic/internal/pack" "github.com/restic/restic/internal/pack"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
) )

View File

@ -6,9 +6,9 @@ import (
"math/rand" "math/rand"
"testing" "testing"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/index" "github.com/restic/restic/internal/index"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
) )
func randomSize(min, max int) int { func randomSize(min, max int) int {

View File

@ -7,9 +7,8 @@ import (
"fmt" "fmt"
"os" "os"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/backend" "github.com/restic/restic/internal/backend"
"github.com/restic/restic/internal/crypto" "github.com/restic/restic/internal/crypto"

View File

@ -10,9 +10,9 @@ import (
"testing" "testing"
"time" "time"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/archiver" "github.com/restic/restic/internal/archiver"
"github.com/restic/restic/internal/repository" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic"
. "github.com/restic/restic/internal/test" . "github.com/restic/restic/internal/test"
) )

View File

@ -5,10 +5,10 @@ import (
"os" "os"
"testing" "testing"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/backend/local" "github.com/restic/restic/internal/backend/local"
"github.com/restic/restic/internal/backend/mem" "github.com/restic/restic/internal/backend/mem"
"github.com/restic/restic/internal/crypto" "github.com/restic/restic/internal/crypto"
"github.com/restic/restic/internal/restic"
"github.com/restic/restic/internal/test" "github.com/restic/restic/internal/test"
"github.com/restic/chunker" "github.com/restic/chunker"

View File

@ -4,8 +4,7 @@ import (
"context" "context"
"testing" "testing"
"github.com/restic/restic/internal" "github.com/restic/restic/internal/restic"
. "github.com/restic/restic/internal/test" . "github.com/restic/restic/internal/test"
) )

Some files were not shown because too many files have changed in this diff Show More