diff options
| author | 2019-10-01 21:42:43 -0700 | |
|---|---|---|
| committer | 2019-10-01 21:42:43 -0700 | |
| commit | 0598dcf3105fd07c9e3118c77363a553fbd39207 (patch) | |
| tree | 6a797529f2098b45f1dd438c6633365bcbb3e88d /bot/cogs/alias.py | |
| parent | Update docs cog docstring & fix URL converter attribute error (diff) | |
| parent | Merge pull request #475 from python-discord/fix-tags-edit-command (diff) | |
Merge branch 'master' into short-docs
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/alias.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bot/cogs/alias.py b/bot/cogs/alias.py index 80ff37983..0f49a400c 100644 --- a/bot/cogs/alias.py +++ b/bot/cogs/alias.py @@ -53,6 +53,11 @@ class Alias (Cog): """Alias for invoking <prefix>site resources.""" await self.invoke(ctx, "site resources") + @command(name="tools", hidden=True) + async def site_tools_alias(self, ctx: Context) -> None: + """Alias for invoking <prefix>site tools.""" + await self.invoke(ctx, "site tools") + @command(name="watch", hidden=True) async def bigbrother_watch_alias(self, ctx: Context, user: Union[Member, User, proxy_user], *, reason: str) -> None: """Alias for invoking <prefix>bigbrother watch [user] [reason].""" |