2023-09-23 00:44:32 -04:00
|
|
|
#!/usr/bin/env raku
|
|
|
|
|
|
|
|
# It is important that you import App::MyService after
|
|
|
|
# Humming-Bird::Core to avoid having some weird side-effects with
|
|
|
|
# route declarations in your service
|
|
|
|
|
|
|
|
use v6.d;
|
|
|
|
use Humming-Bird::Core;
|
|
|
|
|
|
|
|
# Local libs
|
|
|
|
use lib 'lib';
|
|
|
|
use Hyperlink-Redirect;
|
|
|
|
|
2023-11-17 20:56:18 -05:00
|
|
|
listen 3000;
|