feat: add get replies and get_user_posts

This commit is contained in:
firedotguy
2026-02-07 23:20:00 +03:00
parent 6236c5981b
commit 5ebcdb1ad5
7 changed files with 69 additions and 6 deletions

View File

@@ -98,4 +98,8 @@ class PinNotOwned(Exception):
def __init__(self, pin: str) -> None:
self.pin = pin
def __str__(self):
return f'You do not own "{self.pin}" pin'
return f'You do not own "{self.pin}" pin'
class NoContent(Exception):
def __str__(self) -> str:
return 'Content or attachments required'