blob: 58fbd8b91f5c157f866ae9e667a20f8403077a6e [file] [log] [blame]
Nils Diewald5d1ffb42014-05-21 17:45:34 +00001package Korap::Example;
2use Mojo::Base 'Mojolicious::Controller';
3
4# This action will render a template
5sub welcome {
6 my $self = shift;
7
8 # Render template "example/welcome.html.ep" with message
9 $self->render(msg => 'Welcome to the Mojolicious real-time web framework!');
10}
11
121;