mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
d8e42744b4
* fix: move eventstore pkgs * fix: move eventstore pkgs * fix: remove v2 view * fix: remove v2 view
21 lines
442 B
Go
21 lines
442 B
Go
package repository
|
|
|
|
import (
|
|
"regexp"
|
|
|
|
"github.com/caos/zitadel/internal/errors"
|
|
)
|
|
|
|
var versionRegexp = regexp.MustCompile(`^v[0-9]+(\.[0-9]+){0,2}$`)
|
|
|
|
//Version represents the semver of an aggregate
|
|
type Version string
|
|
|
|
//Validate checks if the v is semver
|
|
func (v Version) Validate() error {
|
|
if !versionRegexp.MatchString(string(v)) {
|
|
return errors.ThrowPreconditionFailed(nil, "MODEL-luDuS", "version is not semver")
|
|
}
|
|
return nil
|
|
}
|