mirror of
https://github.com/ggicci/httpin.git
synced 2024-11-28 08:49:05 +02:00
10 lines
141 B
Go
10 lines
141 B
Go
package httpin
|
|
|
|
type option func(*core)
|
|
|
|
func WithErrorStatusCode(code int) option {
|
|
return func(c *core) {
|
|
c.errorStatusCode = code
|
|
}
|
|
}
|