package migration import "context" type VersionResolver interface { Current(context.Context) (string, error) Set(context.Context, string) error }