Source code for byte_bot.byte.views.astral

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

from __future__ import annotations

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

__all__ = ("RuffView",)

logger = get_logger()


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