We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd8f411 commit e926382Copy full SHA for e926382
1 file changed
README.md
@@ -25,7 +25,7 @@ See the [installation guide](https://docs-deserve.neabyte.com/getting-started/in
25
Create a routes directory and export HTTP method handlers. Start the server.
26
27
```typescript
28
-import { Router } from 'jsr:@neabyte/deserve'
+import { Router } from '@neabyte/deserve'
29
30
// Create router pointing at routes directory
31
const router = new Router({ routes: { directory: './routes' } })
@@ -44,7 +44,7 @@ await router.serve(8000)
44
**Example route** in `routes/hello.ts`:
45
46
47
-import type { Context } from 'jsr:@neabyte/deserve'
+import type { Context } from '@neabyte/deserve'
48
49
// Export GET, POST, PUT, path from file location
50
export function GET(ctx: Context): Response {
0 commit comments