diff options
| author | Fuwn <[email protected]> | 2022-05-15 06:27:30 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-05-15 06:27:30 +0000 |
| commit | a5e101568eb9d981e868bc7bb767e067d838e3a1 (patch) | |
| tree | 3163fd3eb3bff886001ed74653902dd20de0c6d1 /README.md | |
| parent | feat(decorators): auto deduce callback type (diff) | |
| download | laurali-a5e101568eb9d981e868bc7bb767e067d838e3a1.tar.xz laurali-a5e101568eb9d981e868bc7bb767e067d838e3a1.zip | |
refactor(laurali): refer to callbacks as hooks
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -35,12 +35,7 @@ $ deno run --allow-write --allow-run --allow-net --allow-read https://deno.land/ You can then begin to implement your very own Laurali server. ```ts -import { - Callback, - callback, - route, - Server, -} from "https://deno.land/x/laurali/mod.ts"; +import { route, Server } from "https://deno.land/x/laurali/mod.ts"; class MyCoolServer extends Server { /** Visit `/hi` */ |