mirror of
https://github.com/Astatin3/Polyboard.git
synced 2026-06-09 00:28:07 -06:00
12 lines
225 B
Python
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
|