1
0
mirror of https://github.com/regclient/regclient.git synced 2025-04-18 22:44:00 +03:00
regclient/types/ratelimit.go
Brandon Mitchell 218b1ccd4f Refactoring packages under types
Signed-off-by: Brandon Mitchell <git@bmitch.net>
2021-12-29 14:51:00 -05:00

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
}