xframe/vendor/gopkg.in/h2non/gock.v1/options.go

9 lines
300 B
Go
Raw Permalink Normal View History

2024-10-12 12:55:20 +08:00
package gock
// Options represents customized option for gock
type Options struct {
// DisableRegexpHost stores if the host is only a plain string rather than regular expression,
// if DisableRegexpHost is true, host sets in gock.New(...) will be treated as plain string
DisableRegexpHost bool
}