15 lines
218 B
Go
Raw Normal View History

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