1
0
mirror of https://github.com/zedeus/nitter.git synced 2025-12-15 16:52:48 -05:00

Misc. fixes and refactorings

This commit is contained in:
Zed
2020-05-26 14:24:41 +02:00
parent c736a98614
commit 5eec0bde3d
10 changed files with 38 additions and 26 deletions

View File

@@ -87,6 +87,8 @@ type
tweetId*: string
color*: string
PhotoRail* = seq[GalleryPhoto]
Poll* = object
options*: seq[string]
values*: seq[int]
@@ -131,9 +133,9 @@ type
id*: int64
TweetStats* = object
replies*: string
retweets*: string
likes*: string
replies*: int
retweets*: int
likes*: int
Tweet* = ref object
id*: int64