mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
23 lines
412 B
Go
23 lines
412 B
Go
package models
|
|
|
|
import (
|
|
"regexp"
|
|
|
|
"github.com/zitadel/zitadel/internal/errors"
|
|
)
|
|
|
|
var versionRegexp = regexp.MustCompile(`^v[0-9]+(\.[0-9]+){0,2}$`)
|
|
|
|
type Version string
|
|
|
|
func (v Version) Validate() error {
|
|
if !versionRegexp.MatchString(string(v)) {
|
|
return errors.ThrowPreconditionFailed(nil, "MODEL-luDuS", "version is not semver")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (v Version) String() string {
|
|
return string(v)
|
|
}
|