mirror of
https://github.com/Fluffy-Bean/Lynxie.git
synced 2025-05-29 14:53:15 +00:00
Run please
This commit is contained in:
parent
b53e58bd0d
commit
0ea8ab8cf1
8 changed files with 26 additions and 18 deletions
|
@ -4,8 +4,8 @@ from io import BytesIO
|
|||
import discord
|
||||
from discord.ext import commands
|
||||
|
||||
from .config import TINYFOX_ANIMALS
|
||||
from .utils import error_message
|
||||
from lynxie.config import TINYFOX_ANIMALS
|
||||
from lynxie.utils import error_message
|
||||
|
||||
|
||||
class Animals(commands.Cog):
|
||||
|
|
|
@ -5,8 +5,8 @@ import requests
|
|||
import discord
|
||||
from discord.ext import commands
|
||||
|
||||
from .config import E621_API_KEY, E621_USERNAME, E621_BLACKLIST
|
||||
from .utils import error_message
|
||||
from lynxie.config import E621_API_KEY, E621_USERNAME, E621_BLACKLIST
|
||||
from lynxie.utils import error_message
|
||||
|
||||
|
||||
_E621_AUTH = f"{E621_USERNAME}:{E621_API_KEY}".encode("utf-8")
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import discord
|
||||
from discord.ext import commands
|
||||
from .config import LYNXIE_PREFIX
|
||||
from lynxie.config import LYNXIE_PREFIX
|
||||
|
||||
|
||||
class Help(commands.Cog):
|
||||
|
|
|
@ -7,8 +7,8 @@ from PIL import Image, ImageEnhance
|
|||
import discord
|
||||
from discord.ext import commands
|
||||
|
||||
from .config import IMAGE_EXTENSIONS, IMAGE_OVERLAYS
|
||||
from .utils import error_message
|
||||
from lynxie.config import IMAGE_EXTENSIONS, IMAGE_OVERLAYS
|
||||
from lynxie.utils import error_message
|
||||
|
||||
|
||||
class Img(commands.Cog):
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import yt_dlp
|
||||
import discord
|
||||
from discord.ext import commands
|
||||
from .utils import error_message
|
||||
from lynxie.utils import error_message
|
||||
|
||||
|
||||
ffmpeg_options = {"options": "-vn"}
|
||||
|
|
|
@ -7,10 +7,10 @@ import discord
|
|||
from discord.ext import commands
|
||||
from discord.gateway import DiscordWebSocket
|
||||
|
||||
from .config import DISCORD_TOKEN, LYNXIE_PREFIX
|
||||
from .database import CommandHistory, Database
|
||||
from .utils import mobile_status, error_message
|
||||
from .commands import Help, Ping, Hello, Music, Animals, Img, E621
|
||||
from config import DISCORD_TOKEN, LYNXIE_PREFIX
|
||||
from database import CommandHistory, Database
|
||||
from utils import mobile_status, error_message
|
||||
from lynxie.commands import Help, Ping, Hello, Music, Animals, Img, E621
|
||||
|
||||
|
||||
db = Database()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue