From 209925146e44ec3b325c2c089ef70b34ca44d614 Mon Sep 17 00:00:00 2001 From: specCon18 Date: Mon, 17 Mar 2025 14:31:07 -0400 Subject: [PATCH] updated module name to be correct --- .gitignore | 2 +- cmd/root.go | 4 ++-- go.mod | 2 +- main.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 3057e93..dfe1a36 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,7 @@ *.dll *.so *.dylib -./yunodo_redux +yunodo_redux # Test binary, built with `go test -c` *.test diff --git a/cmd/root.go b/cmd/root.go index a84d5f9..d350498 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -25,7 +25,7 @@ type Comment struct { // rootCmd represents the base command when called without any subcommands var rootCmd = &cobra.Command{ - Use: "v2", + Use: "yunodo_redux", Short: "Tooling to make dealing with TODO statements in comments easier to manage.", Long: `YUNODO redux is a better written version of a tool I wrote for internal use. This application is a tool that takes comments that start with TODO: and outputs them in a given format. @@ -38,7 +38,7 @@ PRIORITY_VALUE is a priority from 0-9 where 9 is least critical and 0 is needs p and PATH_TO_PROJECT is the path to your codebase's root. Usage: - yunodo -p + yunodo_redux -p `, // Uncomment the following line if your bare application diff --git a/go.mod b/go.mod index bf4b252..08c03e9 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module speccon18/yunodo/v2 +module speccon18/yunodo_redux go 1.23.4 diff --git a/main.go b/main.go index 06ad401..dbed8c8 100644 --- a/main.go +++ b/main.go @@ -4,7 +4,7 @@ Copyright © 2025 Steven Carpenter package main //TODO: P:4 testing todo in other file -import "speccon18/yunodo/v2/cmd" +import "speccon18/yunodo_redux/cmd" func main() { cmd.Execute()