1.2 KiB
1.2 KiB
gtslib-auth-keyring
GoToSocial client auth with keyring support
ALPHA SOFTWARE just like GoToSocial. Uses go-keyring
.
import (
"log/slog"
auth "git.coopcloud.tech/decentral1se/gtslib-auth-keyring"
)
func main() {
if err := auth.Login("foo@bar.zone"); err != nil {
slog.Error("unable to login", "error", err)
}
}
ACK
Made possible by the good work of slurp
.