Hyperlink-Redirect/lib/Hyperlink-Redirect.rakumod
2023-09-23 00:44:32 -04:00

14 lines
321 B
Raku

use v6.d;
use Humming-Bird::Core;
# Normally would 'use' local libs here for Controller and Model and
# what not but keeping it simple for now...
# Must set the root path lest yet miss setting $!root
my $router = Router.new(root => '/');
$router.get(-> $request, $response {
$response.write('testing 123...')
});