forked from TrueCloudLab/restic
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)
|
|
}
|