blob: 58fbd8b91f5c157f866ae9e667a20f8403077a6e [file] [log] [blame]
package Korap::Example;
use Mojo::Base 'Mojolicious::Controller';
# This action will render a template
sub welcome {
my $self = shift;
# Render template "example/welcome.html.ep" with message
$self->render(msg => 'Welcome to the Mojolicious real-time web framework!');
}
1;