14 lines
162 B
Go
Raw Normal View History

package alertmanagerbatcher
type Config struct {
Capacity int
Size int
}
func NewConfig() Config {
return Config{
Capacity: 1000,
Size: 64,
}
}