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"
"time"
"github.com/restic/restic/internal"
"github.com/spf13/cobra"
"github.com/restic/restic/internal/archiver"
@ -19,6 +17,7 @@ import (
"github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/filter"
"github.com/restic/restic/internal/fs"
"github.com/restic/restic/internal/restic"
)
var cmdBackup = &cobra.Command{

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -3,8 +3,8 @@ package main
import (
"context"
"github.com/restic/restic/internal"
"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.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -8,9 +8,9 @@ import (
"math/rand"
"testing"
"github.com/restic/restic/internal"
"github.com/restic/restic/internal/checker"
"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 {

View File

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

View File

@ -10,8 +10,8 @@ import (
"time"
"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/mock"
"github.com/restic/restic/internal/repository"

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
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
// described in the Design document.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -4,9 +4,8 @@ import (
"context"
"testing"
"github.com/restic/restic/internal"
"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/test"

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -4,8 +4,8 @@ import (
"context"
"testing"
"github.com/restic/restic/internal"
"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/test"

View File

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

View File

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

View File

@ -11,8 +11,8 @@ import (
"github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/fs"
"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/pack"
"github.com/restic/restic/internal/repository"

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -4,9 +4,8 @@ import (
"context"
"sync"
"github.com/restic/restic/internal"
"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,

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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