Source code for byte_bot.views.astral

"""Discord UI views used in Astral commands."""

from __future__ import annotations

from byte_bot.lib.log import get_logger
from byte_bot.views.abstract_views import ButtonEmbedView

__all__ = ("RuffView",)

logger = get_logger()


[docs] class RuffView(ButtonEmbedView): """View for the Ruff embed."""