Deleted tagline patch

This commit is contained in:
Eduard Urbach 2018-11-07 21:17:57 +09:00
parent e08f4c2f09
commit 30a4232878

View File

@ -1,18 +0,0 @@
package main
import (
"github.com/animenotifier/arn"
"github.com/fatih/color"
)
func main() {
color.Yellow("Setting tagline as user intro")
defer color.Green("Finished.")
defer arn.Node.Close()
for user := range arn.StreamUsers() {
user.Introduction = user.Tagline
user.Save()
}
}