Added role change patch

This commit is contained in:
Eduard Urbach 2018-03-16 01:31:17 +01:00
parent 78c2172385
commit a2cefcb516

View File

@ -0,0 +1,13 @@
package main
import (
"github.com/animenotifier/arn"
)
func main() {
defer arn.Node.Close()
user, _ := arn.GetUser("Vy2Hk5yvx")
user.Role = ""
user.Save()
}