Improved logging for BootLog module

This commit is contained in:
2021-11-16 09:41:55 +01:00
parent d413ace721
commit 9c25ec9f24
2 changed files with 27 additions and 7 deletions

View File

@@ -1,7 +1,9 @@
from abc import ABC, abstractmethod
from discord.ext import commands
class BotServiceABC(ABC):
class BotServiceABC(ABC, commands.Bot):
@abstractmethod
def __init__(self): pass