15 lines
218 B
Go
Raw Normal View History

2017-06-11 11:22:04 +02:00
package main
import (
"github.com/animenotifier/arn"
"github.com/fatih/color"
)
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.")
}