Files
Polyboard/modules/chat/main.py
T
2024-02-09 18:52:05 -07:00

12 lines
225 B
Python

mm = None
def test(ac, data):
mm.sendPopupColor(ac.rawClient, 'test!', 'test!', '#600060', True)
def init(moduleMaster):
global mm
mm = moduleMaster
mm.addAuthEventListener('exampleTest', test)
def main():
pass