Injection#
Below is an explanation of how ongaku supports injection.
support
Please note, that only the command handlers tanjun and arc are currently supported with ongaku's dependency injection.
Ongaku relies on the framework alluka for its dependency injection support.
First of all, for the injection to work, you need to use .from_arc()
client creation
lets explain what each line does.
This line simply sets up your GatewayBot.
This sets up the arc client (your command handler.)
Finally, this sets up ongaku's client.
Now, there is a few ways to use ongaku's client.
The first method is good for creating players, and fetching new songs.
Now, if you just wish to get a player directly without having to fetch it you need to do a couple things.
Firstly, you need to import the arc version of ongaku:
Then, you can do the following:
This method requires a player.
You can still get the client from a player, simply by using player.client
First of all, for the injection to work, you need to use .from_tanjun()
client creation
lets explain what each line does.
This line simply sets up your GatewayBot.
This sets up the tanjun client (your command handler.)
Finally, this sets up ongaku's client.
Warning
Tanjun does not currently support player injection.