From e1cf5fcb82488907fbabfc50c8a3aff74177992e Mon Sep 17 00:00:00 2001 From: David Buchanan Date: Mon, 21 Jul 2025 12:28:40 +0100 Subject: [PATCH] goat: rename service-auth-local to service-auth-offline --- account.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/account.go b/account.go index 4d55d26..dcaa245 100644 --- a/account.go +++ b/account.go @@ -113,7 +113,7 @@ var cmdAccount = &cli.Command{ Action: runAccountServiceAuth, }, &cli.Command{ - Name: "service-auth-local", + Name: "service-auth-offline", Usage: "create service auth token via locally-held signing key", Flags: []cli.Flag{ &cli.StringFlag{ @@ -144,7 +144,7 @@ var cmdAccount = &cli.Command{ Usage: "validity time window of token (seconds)", }, }, - Action: runAccountServiceAuthLocal, + Action: runAccountServiceAuthOffline, }, &cli.Command{ Name: "create", @@ -405,7 +405,7 @@ func runAccountServiceAuth(cctx *cli.Context) error { return nil } -func runAccountServiceAuthLocal(cctx *cli.Context) error { +func runAccountServiceAuthOffline(cctx *cli.Context) error { privStr := cctx.String("atproto-signing-key") if privStr == "" { return fmt.Errorf("private key must be provided") -- 2.51.2