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