mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 08:10:08 +00:00
Knut Ahlers
c63793be2d
and fix some newly appearing linter errors Signed-off-by: Knut Ahlers <knut@ahlers.me>
27 lines
693 B
Go
27 lines
693 B
Go
package main
|
|
|
|
import (
|
|
"github.com/Luzifer/go_helpers/v2/cli"
|
|
"github.com/pkg/errors"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func init() {
|
|
cliTool.Add(cli.RegistryEntry{
|
|
Name: "reset-secrets",
|
|
Description: "Remove encrypted data to reset encryption passphrase",
|
|
Run: func([]string) error {
|
|
if err := accessService.RemoveAllExtendedTwitchCredentials(); err != nil {
|
|
return errors.Wrap(err, "resetting Twitch credentials")
|
|
}
|
|
log.Info("removed stored Twitch credentials")
|
|
|
|
if err := db.ResetEncryptedCoreMeta(); err != nil {
|
|
return errors.Wrap(err, "resetting encrypted meta entries")
|
|
}
|
|
log.Info("removed encrypted meta entries")
|
|
|
|
return nil
|
|
},
|
|
})
|
|
}
|