Changes and simple fix
[cascardo/www-eztv.git] / lib / WWW / EZTV / Link.pm
1 package WWW::EZTV::Link;
2 use Moose;
3 with 'WWW::EZTV::UA';
4
5 # ABSTRACT: EZTV episode link
6
7 has url => is => 'ro', isa => 'Str', required => 1;
8
9 1;