This commit is contained in:
2017-07-01 01:16:25 +02:00
parent d40d4a576a
commit 10ef00a810
31 changed files with 16 additions and 48 deletions

View File

@ -0,0 +1,12 @@
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.")
}