mirror of
https://github.com/octoleo/restic.git
synced 2024-11-23 21:27:34 +00:00
a1ca5e15c4
The migration will be removed after the next restic release anyways. Thus, there's no need for a clean implementation.
13 lines
329 B
Go
13 lines
329 B
Go
package repository
|
|
|
|
import (
|
|
"github.com/restic/restic/internal/backend"
|
|
"github.com/restic/restic/internal/backend/s3"
|
|
)
|
|
|
|
// AsS3Backend extracts the S3 backend from a repository
|
|
// TODO remove me once restic 0.17 was released
|
|
func AsS3Backend(repo *Repository) *s3.Backend {
|
|
return backend.AsBackend[*s3.Backend](repo.be)
|
|
}
|