burguillos.info/lib/BurguillosInfo/Ads/YoTeLoGuiso.pm

35 lines
385 B
Perl
Raw Normal View History

2023-08-21 00:58:11 +02:00
package BurguillosInfo::Ads::YoTeLoGuiso;
use v5.36.0;
use strict;
use warnings;
use utf8;
use feature 'signatures';
use Moo;
use parent 'BurguillosInfo::Ad';
sub id ($self) {
return 'yo-te-lo-guiso';
}
sub is_active ($self) {
return 1;
}
sub img {
return '/img/afasode.svg';
}
sub text {
return 'Prueba.';
}
sub href {
return 'https://example.com';
}
1;