-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
medic_i_have_no_idea_what_i'm_doing.wav
- Loading branch information
Showing
3 changed files
with
31 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
from __future__ import annotations | ||
|
||
import logging | ||
from os.path import dirname, join | ||
|
||
from discord.ext import commands | ||
|
||
from utils.mdcmd import add_md_files_as_commands | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
class AssistanceWii(commands.GroupCog): | ||
""" | ||
Wii help commands that will mostly be used in the help channels. | ||
""" | ||
data_dir = join(dirname(__file__), 'assistance-cmds') | ||
|
||
|
||
add_md_files_as_commands(AssistanceWii, console_cmd="wii") | ||
|
||
|
||
async def setup(bot): | ||
await bot.add_cog(AssistanceWii(bot)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters