14 lines
321 B
Raku
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...')
|
||
|
});
|