package verificationimp import "fmt" func wrap(err error, msg string) error { return fmt.Errorf("%s: %w", msg, err) }