aboutsummaryrefslogtreecommitdiff
path: root/utils/api/aniskip/types.go
blob: 18008c932f2d2eddbaac32ac60eb8efd68faf1a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package aniskip

import (
	"net/http"
	"time"
)

type client struct {
	httpClient *http.Client
	maxRetries int
	backoff    time.Duration
}