Files

10 lines
256 B
Go
Raw Permalink Normal View History

2026-02-06 17:57:03 +04:00
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()
}