Initalize repo

This commit is contained in:
BaerbelBox
2022-03-31 15:21:47 +02:00
parent 557f3e9b31
commit 7cf65ef092
98 changed files with 15860 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
from enum import Enum
class ModuleType(Enum):
ON_JOIN = 'ON_JOIN'
ON_KICK = 'ON_KICK'
ON_LEAVE = 'ON_LEAVE'
ON_PING = 'ON_PING'
ON_NICK_CHANGE = 'ON_NICK_CHANGE'
ON_MSG = 'ON_MSG'
ON_NOTICE = 'ON_NOTICE'
ON_MAGIC_NUMBER = 'ON_MAGIC_NUMBER'