zitadel/internal/eventstore/version.go

19 lines
362 B
Go
Raw Normal View History

2020-09-24 06:52:10 +00:00
package eventstore
import (
"regexp"
"github.com/zitadel/zitadel/internal/zerrors"
2020-09-24 06:52:10 +00:00
)
type Version string
var versionRegexp = regexp.MustCompile(`^v[0-9]+(\.[0-9]+){0,2}$`)
func (v Version) Validate() error {
if !versionRegexp.MatchString(string(v)) {
return zerrors.ThrowPreconditionFailed(nil, "MODEL-luDuS", "version is not semver")
}
return nil
}