-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7cc9602
commit 3a64cc6
Showing
3 changed files
with
36 additions
and
0 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,14 @@ | ||
DISCORD_TOKEN= | ||
MONGO_URI= | ||
MONGO_DB_NAME= | ||
|
||
EDEN_API_URL= | ||
EDEN_API_KEY= | ||
EDEN_API_SECRET= | ||
EDEN_CHARACTER_ID= | ||
|
||
ALLOWED_GUILDS= | ||
ALLOWED_GUILDS_TEST= | ||
ALLOWED_CHANNELS= | ||
|
||
LOGOS_URL= |
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,11 @@ | ||
from discord.ext import commands | ||
from cogs.CharacterGeneratorCog import CharacterGeneratorCog | ||
|
||
|
||
class EdenCharacterGeneratorCog(CharacterGeneratorCog): | ||
def __init__(self, bot: commands.bot) -> None: | ||
super().__init__(bot) | ||
|
||
|
||
def setup(bot: commands.Bot) -> None: | ||
bot.add_cog(EdenCharacterGeneratorCog(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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from discord.ext import commands | ||
from cogs.LogosCharacterCog import LogosCharacterCog | ||
|
||
|
||
class EdenLogosCharacterCog(LogosCharacterCog): | ||
def __init__(self, bot: commands.bot) -> None: | ||
super().__init__(bot) | ||
|
||
|
||
def setup(bot: commands.Bot) -> None: | ||
bot.add_cog(EdenLogosCharacterCog(bot)) |