1
0
mirror of https://github.com/restic/restic.git synced 2025-07-28 01:03:36 +00:00

9 lines
126 B
Go
Raw Normal View History

package migrations
// All contains all migrations.
var All []Migration
func register(m Migration) {
All = append(All, m)
}