From 2e0b19f63fce05f779b0afa8efe90ffa596a8af2 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sat, 25 Mar 2017 15:25:58 +0100 Subject: [PATCH] location: Move to backend/location --- src/cmds/restic/global.go | 2 +- src/restic/{ => backend}/location/location.go | 0 src/restic/{ => backend}/location/location_test.go | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename src/restic/{ => backend}/location/location.go (100%) rename src/restic/{ => backend}/location/location_test.go (100%) diff --git a/src/cmds/restic/global.go b/src/cmds/restic/global.go index a41194a1c..8cfcedce7 100644 --- a/src/cmds/restic/global.go +++ b/src/cmds/restic/global.go @@ -12,11 +12,11 @@ import ( "syscall" "restic/backend/local" + "restic/backend/location" "restic/backend/rest" "restic/backend/s3" "restic/backend/sftp" "restic/debug" - "restic/location" "restic/repository" "restic/errors" diff --git a/src/restic/location/location.go b/src/restic/backend/location/location.go similarity index 100% rename from src/restic/location/location.go rename to src/restic/backend/location/location.go diff --git a/src/restic/location/location_test.go b/src/restic/backend/location/location_test.go similarity index 100% rename from src/restic/location/location_test.go rename to src/restic/backend/location/location_test.go