:feat_ Add Bot alias for App and include in __all__ exports

This commit is contained in:
2025-03-08 19:52:36 +01:00
parent 0dc27e7d29
commit 0b447838aa

View File

@@ -1,6 +1,8 @@
# Copyright (c) Paillat-dev # Copyright (c) Paillat-dev
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
from discord import * # noqa: F403, I001 # pyright: ignore [reportWildcardImportFromLibrary]
from .app import App from .app import App
__all__ = ["App"] Bot = App
__all__ = ["App", "Bot"]