release: 0.0.3-1

This commit is contained in:
2024-08-01 13:26:50 +08:00
parent 79b9fba1cd
commit 89c5ed561a
12 changed files with 484 additions and 31 deletions

View File

@ -6,7 +6,7 @@ const App = new rootRouter<any, any>();
App.binding(
'/(.*)',
new handler('ANY', [
async (request, response) => {
async (request, _response) => {
console.log(request);
return undefined;
},