Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 1 | package Korap::Search; |
2 | use Mojo::Base 'Mojolicious::Controller'; | ||||
3 | |||||
4 | # This action will render a template | ||||
5 | sub remote { | ||||
6 | my $c = shift; | ||||
7 | |||||
8 | # Render template "example/welcome.html.ep" with message | ||||
9 | $c->render(template => 'search'); | ||||
10 | }; | ||||
11 | |||||
12 | |||||
13 | |||||
14 | 1; |