grain/config/types/limitBurst.go

6 lines
102 B
Go
Raw Normal View History

2024-07-31 16:01:18 +00:00
package config
type LimitBurst struct {
Limit float64 `yaml:"limit"`
Burst int `yaml:"burst"`
}