forked from apps/featurer
This also adds ability to be built in network-constrained environment.
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)
|
|
}
|
|
}
|