mirror of
https://github.com/status-im/proxy-common.git
synced 2026-08-27 18:41:06 +00:00
10 lines
256 B
Go
10 lines
256 B
Go
package httpclient
|
|
|
|
// IHttpStatusHandler is an interface for handling HTTP request statuses
|
|
type IHttpStatusHandler interface {
|
|
// OnRequest handles a request with its status result
|
|
OnRequest(status string)
|
|
// OnRetry handles retry events
|
|
OnRetry()
|
|
}
|