Skip to content

Commit

Permalink
readme - use (...)
Browse files Browse the repository at this point in the history
Signed-off-by: Rafał Safin <[email protected]>
  • Loading branch information
Rafał Safin committed Mar 5, 2024
1 parent 4ad1302 commit 531e29b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ We will add `Pet` model to `app/models.py`.
```python
# app/models.py

...
(...)

class Pet(Base):
__tablename__ = "pet"
Expand Down Expand Up @@ -278,11 +278,11 @@ Also, we need to add newly created endpoints to router.
```python
# app/api/api.py

...
(...)

from app.api.endpoints import auth, pets, users

...
(...)

api_router.include_router(pets.router, prefix="/pets", tags=["pets"])

Expand Down

0 comments on commit 531e29b

Please sign in to comment.