1
0
mirror of https://github.com/ggicci/httpin.git synced 2024-11-28 08:49:05 +02:00
httpin/options.go

10 lines
141 B
Go

package httpin
type option func(*core)
func WithErrorStatusCode(code int) option {
return func(c *core) {
c.errorStatusCode = code
}
}