tangled
alpha
login
or
join now
crashkeys.dev
/
audquotes
0
fork
atom
Source code for my personal quote bot project.
0
fork
atom
overview
issues
pulls
pipelines
Fixed crontab syntax.
ironballista
1 year ago
a26d183f
be1ff351
+1
-1
1 changed file
expand all
collapse all
unified
split
src
main.rs
+1
-1
src/main.rs
reviewed
···
20
20
const EVENT_QUEUE: &str = "queue:event";
21
21
22
22
// See https://cron.help for what these strings mean
23
23
-
const POSTING_INTERVAL_CRON: &str = "00,30 * * * * * *";
23
23
+
const POSTING_INTERVAL_CRON: &str = "0 0,30 * * * *";
24
24
const EVENT_UPDATE_INTERVAL: &str = "55 23 * * *";
25
25
26
26
fn prepare_post<I: Into<String>>(text: I) -> post::RecordData {