1 2 3 4 5 6 7 8 9 10 11
use ircbot::{bot, Context, Result}; #[bot] impl BadTzBot { #[on(cron = "0 0 * * * *", tz = "Mars/Phobos")] async fn tick(&self, ctx: Context) -> Result { ctx.say("tick") } } fn main() {}