aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-05-15 06:27:30 +0000
committerFuwn <[email protected]>2022-05-15 06:27:30 +0000
commita5e101568eb9d981e868bc7bb767e067d838e3a1 (patch)
tree3163fd3eb3bff886001ed74653902dd20de0c6d1 /README.md
parentfeat(decorators): auto deduce callback type (diff)
downloadlaurali-a5e101568eb9d981e868bc7bb767e067d838e3a1.tar.xz
laurali-a5e101568eb9d981e868bc7bb767e067d838e3a1.zip
refactor(laurali): refer to callbacks as hooks
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 1 insertions, 6 deletions
diff --git a/README.md b/README.md
index 6416fb3..145e755 100644
--- a/README.md
+++ b/README.md
@@ -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` */