mirror of
https://github.com/crazy-max/diun.git
synced 2024-12-22 19:38:28 +00:00
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)
|
|
}
|
|
}
|