A-0.1 - Modularer Aufbau #13

Merged
edraft merged 118 commits from 0.1 into Alpha 2021-11-25 21:02:12 +01:00
Showing only changes of commit 880fe8a4c7 - Show all commits

View File

@ -1,5 +1,6 @@
from abc import ABC, abstractmethod
import discord
from discord.ext import commands
@ -13,3 +14,6 @@ class BotServiceABC(ABC, commands.Bot):
@abstractmethod
async def stop_async(self): pass
@abstractmethod
async def on_message(self, message: discord.Message): pass