13 lines
199 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() {
color.Yellow("Deleting all sessions...")
arn.DB.DeleteTable("Session")
color.Green("Finished.")
}