Files
Polyboard/modules/example/main.py
T

12 lines
225 B
Python
Raw Normal View History

2024-02-09 18:52:05 -07:00
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