mirror of
https://github.com/restic/restic.git
synced 2025-08-20 12:17:29 +00:00
.github
changelog
cmd
doc
docker
internal
archiver
backend
cache
checker
crypto
debug
errors
filter
fs
fuse
hashing
index
limiter
list
migrations
doc.go
interface.go
list.go
s3_layout.go
mock
options
pack
pipe
repository
restic
test
walk
worker
scripts
vendor
.gitignore
.hound.yml
.travis.yml
CHANGELOG.md
CONTRIBUTING.md
Gopkg.lock
Gopkg.toml
LICENSE
Makefile
README.rst
VERSION
appveyor.yml
build.go
run_integration_tests.go
9 lines
126 B
Go
9 lines
126 B
Go
![]() |
package migrations
|
||
|
|
||
|
// All contains all migrations.
|
||
|
var All []Migration
|
||
|
|
||
|
func register(m Migration) {
|
||
|
All = append(All, m)
|
||
|
}
|