diff --git a/videoarchiver/commands.py b/videoarchiver/commands.py new file mode 100644 index 0000000..17287ce --- /dev/null +++ b/videoarchiver/commands.py @@ -0,0 +1,4 @@ +"""Re-export commands from core.commands""" +from .core.commands import VideoArchiverCommands + +__all__ = ['VideoArchiverCommands'] diff --git a/videoarchiver/processor/core.py b/videoarchiver/processor/core.py index 678cd83..21ec7ed 100644 --- a/videoarchiver/processor/core.py +++ b/videoarchiver/processor/core.py @@ -1,6 +1,7 @@ """Core VideoProcessor class that manages video processing operations""" import logging +import asyncio import discord from discord.ext import commands from discord import app_commands