BeastBB/lib/BeastBB/Controller/Example.pm

12 lines
215 B
Perl

package BeastBB::Controller::Example;
use Mojo::Base 'Mojolicious::Controller';
sub welcome {
my $self = shift;
$self->render(
msg => 'Welcome to the Mojolicious real-time web framework!' );
}
1;