From 85caa38c7b45766f044a016b88a410f75cb7469e Mon Sep 17 00:00:00 2001 From: sinner Date: Mon, 19 Jan 2026 06:02:10 -0500 Subject: feat: add command aliases for improved cli usability --- cmd/geo.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'cmd/geo.go') diff --git a/cmd/geo.go b/cmd/geo.go index 6c7caf9..cea7a75 100644 --- a/cmd/geo.go +++ b/cmd/geo.go @@ -7,10 +7,11 @@ import ( ) var geoCmd = &cobra.Command{ - Use: "geo", - Short: "Search for address information", - Long: `Returns address information including residents, property details, and demographics (costs 1 credit)`, - RunE: runGeoSearch, + Use: "geo", + Aliases: []string{"g"}, + Short: "Search for address information", + Long: `Returns address information including residents, property details, and demographics (costs 1 credit)`, + RunE: runGeoSearch, } func init() { -- cgit v1.2.3