burguillos.info/lib/BurguillosInfo/Controller/Conquer.pm

16 lines
199 B
Perl
Raw Normal View History

2023-11-13 17:32:12 +01:00
package BurguillosInfo::Controller::Conquer;
use v5.34.1;
use strict;
use warnings;
use utf8;
use Mojo::Base 'Mojolicious::Controller', '-signatures';
sub index($self) {
$self->render;
}
1;