mirror of
https://github.com/RGBCube/GitHubWrapper
synced 2025-07-25 07:27:43 +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
|
# Dependency Graph
|
||||||
# Deploy keys
|
# Deploy keys
|
||||||
# Deployments
|
# Deployments
|
||||||
# Emojis
|
# Emojis DONE
|
||||||
# Enterprise administration
|
# Enterprise administration
|
||||||
# Gists DONE(1st part)
|
# Gists DONE(1st part)
|
||||||
# Git database
|
# Git database
|
||||||
|
@ -850,3 +850,8 @@ class HTTPClient:
|
||||||
|
|
||||||
async def get_gitignore_template(self, *, name: str):
|
async def get_gitignore_template(self, *, name: str):
|
||||||
return await self.request("GET", f"/gitignore/templates/{name}")
|
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