Skip to content

Injection#

Injection.

Add injection support for arc, and tanjun.

arc_ensure_player async #

arc_ensure_player(ctx: arc.GatewayContext)

Arc ensure player.

This is an arc hook, that ensures that the player you are injecting, exists.

Warning

You need to install the arc version of ongaku.

pip install ongaku[arc]

Example
from ongaku.ext import injection


@arc.with_hook(injection.arc_ensure_player)
@arc.slash_command("name", "description")
async def example_command(ctx: arc.GatewayContext, player: ongaku.Player) -> None:
    await player.pause()
PARAMETER DESCRIPTION
ctx

The context for the hook.

TYPE: arc.GatewayContext