GoToSocial client auth with keyring support
Go to file
2024-08-04 11:00:00 +02:00
.drone.yml feat: init 2024-07-31 22:47:01 +02:00
go.mod feat: init 2024-07-31 22:47:01 +02:00
go.sum feat: init 2024-07-31 22:47:01 +02:00
gtslib_auth_keyring.go feat: support passing client func opts 2024-08-01 22:45:36 +02:00
LICENSE feat: init 2024-07-31 22:47:01 +02:00
README.md docs: error key [ci skip] 2024-08-04 11:00:00 +02:00

gtslib-auth-keyring

Build Status Go Report Card Go Reference

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.

License