Skip to content

Commit 5c75930

Browse files
Update src/content/docs/workers/tutorials/build-a-content-version-system/index.mdx
Co-authored-by: db-cloudflare <[email protected]>
1 parent c685951 commit 5c75930

File tree

1 file changed

+2
-1
lines changed
  • src/content/docs/workers/tutorials/build-a-content-version-system

1 file changed

+2
-1
lines changed

src/content/docs/workers/tutorials/build-a-content-version-system/index.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,8 @@ export interface CurrentVersionResponse {
285285
// Utility type for listing versions without full content
286286
export type VersionListItem = Omit<Version, 'content' | 'diff'>;
287287
```
288-
288+
## 3. Handle requests sent to the Durable Object
289+
289290
**src/index.ts: Entrypoint for request routing and presentation**
290291

291292
Cloudflare Workers will route incoming requests to the Durable Objects instance. The Durable Objects instance then processes the request, and provides the appropriate response to the Worker.

0 commit comments

Comments
 (0)