2016-06-05 13:28:28 -07:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
# don't convert to ascii in py2.7 when creating string to return
|
|
|
|
|
2014-11-21 13:35:15 -08:00
|
|
|
import time
|
|
|
|
outputs = []
|
|
|
|
|
2016-04-15 14:03:20 -07:00
|
|
|
|
2014-11-21 13:35:15 -08:00
|
|
|
def canary():
|
2016-04-15 14:03:20 -07:00
|
|
|
# NOTE: you must add a real channel ID for this to work
|
2014-11-21 13:35:15 -08:00
|
|
|
outputs.append(["D12345678", "bot started: " + str(time.time())])
|
|
|
|
|
|
|
|
canary()
|