blob: e548ace6ccd2fca5c88da1d94d2d9f870573bde6 [file] [log] [blame]
package Korap::Search;
use Mojo::Base 'Mojolicious::Controller';
# This action will render a template
sub remote {
my $c = shift;
# Render template "example/welcome.html.ep" with message
$c->render(template => 'search');
};
1;