mirror of
https://github.com/fiatjaf/khatru.git
synced 2025-04-01 16:38:03 +02:00
12 lines
221 B
Go
12 lines
221 B
Go
package main
|
|
|
|
import "time"
|
|
|
|
// every hour, delete all very old events
|
|
func cleanupRoutine() {
|
|
for {
|
|
time.Sleep(60 * time.Minute)
|
|
db.Exec(`DELETE FROM event WHERE created_at < $1`, time.Now().AddDate(0, -3, 0))
|
|
}
|
|
}
|