mirror of
https://github.com/lukaszraczylo/semver-generator.git
synced 2026-06-06 22:53:46 +00:00
17 lines
328 B
Go
17 lines
328 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/lukaszraczylo/semver-generator/cmd/utils"
|
|
)
|
|
|
|
// These functions are now in the utils package
|
|
// They are kept here as stubs for backward compatibility
|
|
|
|
func updatePackage() bool {
|
|
return utils.UpdatePackage()
|
|
}
|
|
|
|
func checkLatestRelease() (string, bool) {
|
|
return utils.CheckLatestRelease()
|
|
}
|