This commit is contained in:
2024-07-19 12:38:11 +08:00
parent fccf33d953
commit c216c0a62f
34 changed files with 1302 additions and 1196 deletions

View File

@ -3,13 +3,13 @@
> Handlers.js is a unified and lightweight web application framework for multiple platforms.
```ts
import handlerJS from "handlers.js";
import handlerJS from 'handlers.js';
const App = new handlerJS();
App.binding(
"/",
App.create("ANY", async () => "Hello World!")
'/',
App.create('ANY', async () => 'Hello World!'),
);
App.useMappingAdapter();