From 3390a1b8a9bb02c98e808d66fa5a5d9337a6a2ab Mon Sep 17 00:00:00 2001 From: Jeroen Oudshoorn Date: Fri, 13 Oct 2023 00:12:42 +0200 Subject: [PATCH] v2.4.7 Signed-off-by: Jeroen Oudshoorn --- pwnagotchi/google/cmd.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pwnagotchi/google/cmd.py b/pwnagotchi/google/cmd.py index 36bcb7f2..3bef854a 100644 --- a/pwnagotchi/google/cmd.py +++ b/pwnagotchi/google/cmd.py @@ -14,9 +14,11 @@ def add_parsers(subparsers): parser_google = subparsers.add_parser('google') google_subparsers = parser_google.add_subparsers(dest='googlecmd') - # pwnagotchi plugins search + # pwnagotchi google auth parser_google_auth = google_subparsers.add_parser('auth', help='Google Authentication') + # pwnagotchi google refresh token + parser_google_refresh = google_subparsers.add_parser('refresh', help="Refresh Google authentication token") return subparsers