2014-11-17 21:22:37 -08:00
|
|
|
import time
|
|
|
|
crontable = []
|
|
|
|
outputs = []
|
|
|
|
|
2016-04-15 14:03:20 -07:00
|
|
|
crontable.append([5, "say_time"])
|
|
|
|
|
2014-11-17 21:22:37 -08:00
|
|
|
|
|
|
|
def say_time():
|
2016-04-15 14:03:20 -07:00
|
|
|
# NOTE: you must add a real channel ID for this to work
|
2014-11-18 10:20:15 -08:00
|
|
|
outputs.append(["D12345678", time.time()])
|