From b482df04ec070affb66cc63aa6c1ccbc2465c05b Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Tue, 26 Jan 2016 21:49:22 +0100 Subject: [PATCH] Add more documentation --- backend/doc.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/doc.go b/backend/doc.go index e85cef355..f82c3d671 100644 --- a/backend/doc.go +++ b/backend/doc.go @@ -1,2 +1,5 @@ // Package backend provides local and remote storage for restic repositories. +// All backends need to implement the Backend interface. There is a +// MockBackend, which can be used for mocking in tests, and a MemBackend, which +// stores all data in a hash internally. package backend