updated module name to be correct

This commit is contained in:
specCon18 2025-03-17 14:31:07 -04:00
parent 53b19d39a3
commit 209925146e
4 changed files with 5 additions and 5 deletions

2
.gitignore vendored
View file

@ -7,7 +7,7 @@
*.dll
*.so
*.dylib
./yunodo_redux
yunodo_redux
# Test binary, built with `go test -c`
*.test

View file

@ -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 <PATH_TO_PROJECT>
yunodo_redux -p <PATH_TO_PROJECT>
`,
// Uncomment the following line if your bare application

2
go.mod
View file

@ -1,4 +1,4 @@
module speccon18/yunodo/v2
module speccon18/yunodo_redux
go 1.23.4

View file

@ -4,7 +4,7 @@ Copyright © 2025 Steven Carpenter <steven.carpenter@skdevstudios.com>
package main
//TODO: P:4 testing todo in other file
import "speccon18/yunodo/v2/cmd"
import "speccon18/yunodo_redux/cmd"
func main() {
cmd.Execute()