1package Git::Mail::Address;
2use 5.008;
3use strict;
4use warnings;
56
=head1 NAME
78
Git::Mail::Address - Wrapper for the L<Mail::Address> module, in case it's not installed
910
=head1 DESCRIPTION
1112
This module is only intended to be used for code shipping in the
13C<git.git> repository. Use it for anything else at your peril!
1415
=cut
1617
eval {
18require Mail::Address;
191;
20} or do {
21require Git::FromCPAN::Mail::Address;
22};
2324
1;