feat: add etc and users

This commit is contained in:
firedotguy
2026-01-29 22:17:28 +03:00
parent 0a78fe219c
commit 7c99d8e00b
3 changed files with 68 additions and 2 deletions

10
itd/etc.py Normal file
View File

@@ -0,0 +1,10 @@
from itd.request import fetch
def get_top_clans(token: str):
return fetch(token, 'get', 'users/stats/top-clans')
def get_who_to_follow(token: str):
return fetch(token, 'get', 'users/suggestions/who-to-follow')
def get_platform_status(token: str):
return fetch(token, 'get', 'platform/status')