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