2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-19 17:22:22 +00:00
restic/internal/migrations/list.go

9 lines
126 B
Go
Raw Permalink Normal View History

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