mirror of
https://github.com/Astatin3/Polyboard.git
synced 2026-06-08 16:18:03 -06:00
14 lines
258 B
Python
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 |