9 lines
184 B
Python
9 lines
184 B
Python
![]() |
import time
|
||
|
crontable = []
|
||
|
outputs = []
|
||
|
|
||
|
def process_message(data):
|
||
|
if data['channel'].startswith("D"):
|
||
|
outputs.append([data['channel'], "from repeat2: " + data['text']])
|
||
|
|