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"]