mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
5 lines
248 B
Go
5 lines
248 B
Go
// Package backend provides local and remote storage for restic repositories.
|
|
// All backends need to implement the Backend interface. There is a MemBackend,
|
|
// which stores all data in a map internally and can be used for testing.
|
|
package backend
|