(Fix): Removed unneccessary comments that my copilot generated.

This commit is contained in:
2025-11-22 10:17:28 +00:00
parent 8081085f87
commit 3caca0dfcb
8 changed files with 3 additions and 46 deletions

View File

@@ -8,12 +8,10 @@ const (
Patch = 3
)
// Version returns the semantic version string
func Version() string {
return fmt.Sprintf("%d.%d.%d", Major, Minor, Patch)
}
// FullVersion returns the version with app name
func FullVersion() string {
return fmt.Sprintf("Zipprine v%s", Version())
}