1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-05-31 04:58:12 +00:00

Add emojis routes

This commit is contained in:
RGBCube 2022-06-27 13:31:40 +03:00
parent afa3228eef
commit a3ce851e55

View file

@ -57,7 +57,7 @@ class RateLimits(NamedTuple):
# Dependency Graph
# Deploy keys
# Deployments
# Emojis
# Emojis DONE
# Enterprise administration
# Gists DONE(1st part)
# Git database
@ -850,3 +850,8 @@ class HTTPClient:
async def get_gitignore_template(self, *, name: str):
return await self.request("GET", f"/gitignore/templates/{name}")
# === EMOJIS === #
async def get_emojis(self) -> Dict[str, str]:
return await self.request("GET", "/emojis")