From 5fedd97b61938d38aa563356a9b081d07984fac9 Mon Sep 17 00:00:00 2001 From: pacnpal <183241239+pacnpal@users.noreply.github.com> Date: Fri, 15 Nov 2024 22:02:19 +0000 Subject: [PATCH] yeah --- videoarchiver/commands.py | 4 ++++ videoarchiver/processor/core.py | 1 + 2 files changed, 5 insertions(+) create mode 100644 videoarchiver/commands.py 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