mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-07 21:00:30 -06:00
Bumps [github.com/go-playground/validator/v10](https://github.com/go-playground/validator) from 10.17.0 to 10.18.0. - [Release notes](https://github.com/go-playground/validator/releases) - [Commits](https://github.com/go-playground/validator/compare/v10.17.0...v10.18.0) --- updated-dependencies: - dependency-name: github.com/go-playground/validator/v10 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
10 lines
145 B
Go
10 lines
145 B
Go
package urn
|
|
|
|
type Option func(Machine)
|
|
|
|
func WithParsingMode(mode ParsingMode) Option {
|
|
return func(m Machine) {
|
|
m.WithParsingMode(mode)
|
|
}
|
|
}
|