2017-06-11 11:22:04 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2019-04-23 14:45:17 +09:00
|
|
|
"github.com/akyoto/color"
|
2019-06-03 18:32:43 +09:00
|
|
|
"github.com/animenotifier/notify.moe/arn"
|
2017-06-11 11:22:04 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2017-11-01 20:11:05 +01:00
|
|
|
defer arn.Node.Close()
|
|
|
|
|
2017-06-11 11:22:04 +02:00
|
|
|
color.Yellow("Deleting all sessions...")
|
2017-10-31 12:12:21 +01:00
|
|
|
arn.DB.Clear("Session")
|
2017-06-11 11:22:04 +02:00
|
|
|
color.Green("Finished.")
|
|
|
|
}
|