From f739c6acc02f36fbdc199789dd362866e5fc0b45 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Wed, 28 May 2025 18:22:16 +0000 Subject: [PATCH] Add 'HEY! I'M NEW' message to apikey list command Co-Authored-By: nmirigliani@agentuity.com --- cmd/apikey.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/apikey.go b/cmd/apikey.go index 7b9a02d3..cb1df532 100644 --- a/cmd/apikey.go +++ b/cmd/apikey.go @@ -82,6 +82,7 @@ Examples: agentuity apikey ls --project-id agentuity apikey ls --mask`, Run: func(cmd *cobra.Command, args []string) { + fmt.Println("HEY! I'M NEW") logger := env.NewLogger(cmd) apiUrl, _, _ := util.GetURLs(logger) ctx, cancel := signal.NotifyContext(context.Background(), os.Interrupt, syscall.SIGINT, syscall.SIGTERM)