14 lines
162 B
Go

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