mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
8 lines
145 B
Go
8 lines
145 B
Go
package helm
|
|
|
|
import "github.com/Masterminds/semver"
|
|
|
|
func IsVersion(text string) bool {
|
|
_, err := semver.NewVersion(text)
|
|
return err == nil
|
|
}
|