feat: Remove obsolete binaries and update module dependencies

- Deleted outdated binary files for Windows, Linux, and macOS platforms to streamline the project.
- Updated `go.mod` to change the module path to `cursor-id-modifier` and adjusted dependency versions for `github.com/fatih/color` and `golang.org/x/sys`.
- Modified `install.sh` to reflect new binary naming conventions and download URLs.
- Cleaned up whitespace in `main.go` for improved code readability.

This commit focuses on cleaning up the project structure and ensuring dependencies are up-to-date.
This commit is contained in:
Xx
2024-12-11 16:40:22 +08:00
parent 394e144a2e
commit 2e27634c8d
9 changed files with 74 additions and 87 deletions

12
go.mod
View File

@@ -1,11 +1,13 @@
module github.com/yuaotian/go-cursor-help
module cursor-id-modifier
go 1.22.0
go 1.21
require github.com/fatih/color v1.18.0
require (
github.com/fatih/color v1.15.0
golang.org/x/sys v0.13.0
)
require (
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
golang.org/x/sys v0.28.0
github.com/mattn/go-isatty v0.0.17 // indirect
)