Files
Polyboard/modules/main/main.py
T
2024-01-22 17:04:09 -07:00

14 lines
258 B
Python

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