mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
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)
|
||
|
}
|