All checks were successful
Release Tag / release (push) Successful in 9s
- Changed module name from `s1d3sw1ped/SteamCache2` to `s1d3sw1ped/steamcache2` for consistency. - Updated all import paths and references throughout the codebase to reflect the new module name. - Adjusted README and Makefile to use the updated module name, ensuring clarity in usage instructions.
12 lines
192 B
Go
12 lines
192 B
Go
// main.go
|
|
package main
|
|
|
|
import (
|
|
"s1d3sw1ped/steamcache2/cmd"
|
|
_ "s1d3sw1ped/steamcache2/version" // Import the version package for global version variable
|
|
)
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|