mirror of
https://github.com/regclient/regclient.git
synced 2025-04-18 22:44:00 +03:00
9 lines
174 B
Go
9 lines
174 B
Go
package types
|
|
|
|
// RateLimit is returned from some http requests
|
|
type RateLimit struct {
|
|
Remain, Limit, Reset int
|
|
Set bool
|
|
Policies []string
|
|
}
|