From 0b447838aae05cb7ecbd11546642b5325004063b Mon Sep 17 00:00:00 2001 From: Paillat-dev Date: Sat, 8 Mar 2025 19:52:36 +0100 Subject: [PATCH] :feat_ Add Bot alias for App and include in __all__ exports --- src/pycord_rest/__init__.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/pycord_rest/__init__.py b/src/pycord_rest/__init__.py index 7d23daf..6e3ead4 100644 --- a/src/pycord_rest/__init__.py +++ b/src/pycord_rest/__init__.py @@ -1,6 +1,8 @@ # Copyright (c) Paillat-dev # SPDX-License-Identifier: MIT - +from discord import * # noqa: F403, I001 # pyright: ignore [reportWildcardImportFromLibrary] from .app import App -__all__ = ["App"] +Bot = App + +__all__ = ["App", "Bot"]