Skip to content

Commit

Permalink
Add Feed.delete
Browse files Browse the repository at this point in the history
  • Loading branch information
jennydaman committed Jul 28, 2024
1 parent fbeb734 commit e6b3acf
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/aiochris/models/logged_in.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,14 @@ async def set(
...

@http.get("note")
async def get_note(self) -> FeedNote: ...
async def get_note(self) -> FeedNote:
"""Get the note of this feed."""
...

@http.delete("url")
async def delete(self) -> None:
"""Delete this feed."""
...


@serde
Expand Down

0 comments on commit e6b3acf

Please sign in to comment.