diff --git a/app.pl b/app.pl index 384df04..9989131 100755 --- a/app.pl +++ b/app.pl @@ -121,5 +121,13 @@ post '/eval' => sub { $c->render(json => {evalout => $output}); }; +get '/robots.txt' => sub { + my ($c) = @_; + + + $c->render(text => qq{User-agent: * +Disallow: /}); +}; + app->start;