12 lines
305 B
Perl
12 lines
305 B
Perl
package BurguillosInfo::Controller::Example;
|
|
use Mojo::Base 'Mojolicious::Controller', -signatures;
|
|
|
|
# This action will render a template
|
|
sub welcome ($self) {
|
|
|
|
# Render template "example/welcome.html.ep" with message
|
|
$self->render(msg => 'Welcome to the Mojolicious real-time web framework!');
|
|
}
|
|
|
|
1;
|