Enter a search query
.Invalidate()
Invalidates the authentication for the current connection.
Method Syntaxdb.Invalidate()
// And we can later on invalidate the token if desired defer func(token string) { if err := db.Invalidate(); err != nil { panic(err) } }(token)