You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
550 B
18 lines
550 B
4 years ago
|
from d4dj_utils.manager.asset_manager import AssetManager
|
||
|
from discord.ext import commands
|
||
|
|
||
|
from miyu_bot.bot.master_asset_manager import MasterFilterManager
|
||
|
from miyu_bot.bot.name_aliases import NameAliases
|
||
|
|
||
|
|
||
|
class D4DJBot(commands.Bot):
|
||
|
assets: AssetManager
|
||
|
asset_filters: MasterFilterManager
|
||
|
aliases: NameAliases
|
||
|
|
||
|
def __init__(self, assets, asset_filters, *args, **kwargs):
|
||
|
self.assets = assets
|
||
|
self.asset_filters = asset_filters
|
||
|
self.aliases = NameAliases(assets)
|
||
|
super().__init__(*args, **kwargs)
|