Files
Polyboard/modules/main/main.py
T

14 lines
258 B
Python
Raw Normal View History

2024-01-05 08:59:40 -07:00
from modules.main import test as test
2024-01-22 17:04:09 -07:00
mm = None
2024-01-05 08:59:40 -07:00
def test1(ac, data):
2024-01-22 17:04:09 -07:00
mm.sendPopupColor(ac.rawClient, 'test!', 'test!', '#600060', True)
def init(moduleMaster):
global mm
mm = moduleMaster
mm.addAuthEventListener('test1', test1)
2024-01-05 08:59:40 -07:00
2024-01-22 17:04:09 -07:00
def main():
pass