Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/edenartlab/bots
Browse files Browse the repository at this point in the history
  • Loading branch information
genekogan committed Dec 18, 2023
2 parents d75484f + 3a64cc6 commit 0e5cbe3
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/bots/lucy-bcad/.env.example
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=
11 changes: 11 additions & 0 deletions src/bots/lucy-bcad/EdenGeneratorCog.py
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))
11 changes: 11 additions & 0 deletions src/bots/lucy-bcad/EdenLogosCharacterCog.py
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))

0 comments on commit 0e5cbe3

Please sign in to comment.