grain/config/types/kindLimitConfig.go

7 lines
136 B
Go
Raw Normal View History

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