mirror of
https://github.com/restic/restic.git
synced 2024-12-21 23:33:03 +00:00
8 lines
126 B
Go
8 lines
126 B
Go
package migrations
|
|
|
|
// All contains all migrations.
|
|
var All []Migration
|
|
|
|
func register(m Migration) {
|
|
All = append(All, m)
|
|
}
|