mirror of
https://github.com/RGBCube/GitHubWrapper
synced 2025-05-31 04:58:12 +00:00
Add emojis routes
This commit is contained in:
parent
afa3228eef
commit
a3ce851e55
1 changed files with 6 additions and 1 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue