updated module name to be correct
This commit is contained in:
parent
53b19d39a3
commit
209925146e
4 changed files with 5 additions and 5 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -7,7 +7,7 @@
|
||||||
*.dll
|
*.dll
|
||||||
*.so
|
*.so
|
||||||
*.dylib
|
*.dylib
|
||||||
./yunodo_redux
|
yunodo_redux
|
||||||
|
|
||||||
# Test binary, built with `go test -c`
|
# Test binary, built with `go test -c`
|
||||||
*.test
|
*.test
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ type Comment struct {
|
||||||
|
|
||||||
// rootCmd represents the base command when called without any subcommands
|
// rootCmd represents the base command when called without any subcommands
|
||||||
var rootCmd = &cobra.Command{
|
var rootCmd = &cobra.Command{
|
||||||
Use: "v2",
|
Use: "yunodo_redux",
|
||||||
Short: "Tooling to make dealing with TODO statements in comments easier to manage.",
|
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.
|
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.
|
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.
|
and PATH_TO_PROJECT is the path to your codebase's root.
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
yunodo -p <PATH_TO_PROJECT>
|
yunodo_redux -p <PATH_TO_PROJECT>
|
||||||
|
|
||||||
`,
|
`,
|
||||||
// Uncomment the following line if your bare application
|
// Uncomment the following line if your bare application
|
||||||
|
|
|
||||||
2
go.mod
2
go.mod
|
|
@ -1,4 +1,4 @@
|
||||||
module speccon18/yunodo/v2
|
module speccon18/yunodo_redux
|
||||||
|
|
||||||
go 1.23.4
|
go 1.23.4
|
||||||
|
|
||||||
|
|
|
||||||
2
main.go
2
main.go
|
|
@ -4,7 +4,7 @@ Copyright © 2025 Steven Carpenter <steven.carpenter@skdevstudios.com>
|
||||||
|
|
||||||
package main
|
package main
|
||||||
//TODO: P:4 testing todo in other file
|
//TODO: P:4 testing todo in other file
|
||||||
import "speccon18/yunodo/v2/cmd"
|
import "speccon18/yunodo_redux/cmd"
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
cmd.Execute()
|
cmd.Execute()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue