Skip to content
This repository has been archived by the owner on Oct 8, 2023. It is now read-only.

corrected import paths for responses #225

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 6 additions & 3 deletions docs/responses.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ Bellow there are the most important ones:
Automatically dumps Python objects and adds the correct headers to match the JSON format.

```py
from vibora import Vibora, JsonResponse
from vibora import Vibora
from vibora.responses import JsonResponse

app = Vibora()

Expand Down Expand Up @@ -50,7 +51,8 @@ The client will have 10 seconds to consume the 30 bytes, in case not, the connec

```py
import asyncio
from vibora import Vibora, StreamingResponse
from vibora import Vibora
from vibora.responses import StreamingResponse

app = Vibora()

Expand All @@ -72,7 +74,8 @@ A raw Response object would fit whenever you need a more
customized response.

```py
from vibora import Vibora, Response
from vibora import Vibora
from vibora.responses import Response

app = Vibora()

Expand Down