fix: sort routes into route records and lazily import

This commit is contained in:
Andy Burke 2025-06-25 20:46:09 -07:00
parent 1928bfcb5e
commit d917b69753
8 changed files with 33 additions and 37 deletions

View file

@ -23,7 +23,7 @@ Deno.test({
Deno.chdir('./tests/www');
test_server_info = await get_ephemeral_listen_server();
const response = await fetch(`http://${test_server_info.hostname}:${test_server_info.port}/echo/hello_world.foo`, {
const response = await fetch(`http://${test_server_info.hostname}:${test_server_info.port}/api/echo/hello_world.foo`, {
method: 'GET'
});